You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
570 B
31 lines
570 B
#!/bin/bash
|
|
|
|
EAPI=4
|
|
PYTHON_COMPAT=( python2_7 )
|
|
source tests-common.sh
|
|
|
|
test-phase_name_free() {
|
|
local ph=${1}
|
|
|
|
if declare -f "${ph}"; then
|
|
die "${ph} function declared while name reserved for phase!"
|
|
fi
|
|
if declare -f "${ph}_all"; then
|
|
die "${ph}_all function declared while name reserved for phase!"
|
|
fi
|
|
}
|
|
|
|
inherit distutils-r1
|
|
|
|
tbegin "sane function names"
|
|
|
|
test-phase_name_free python_prepare
|
|
test-phase_name_free python_configure
|
|
test-phase_name_free python_compile
|
|
test-phase_name_free python_test
|
|
test-phase_name_free python_install
|
|
|
|
tend ${failed}
|
|
|
|
texit
|