1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
test_scripts = \
runtests.sh \
check_parameters.sh
TESTS = $(test_scripts)
EXTRA_DIST = \
check_parameters.sh.in \
check_parameters.php \
runtests.sh.in \
runtests-report.sh \
data \
functions.phpt.in \
php.ini \
test-connect.phpt \
test-conn-limit.phpt \
test-domain-create-and-coredump.phpt \
test-domain-create-and-get-xpath.phpt \
test-domain-create-get-metadata.phpt \
test-domain-create.phpt \
test-domain-define-create-destroy.phpt \
test-domain-define-undefine.phpt \
test-domain-snapshot.phpt \
test-get-emulator.phpt \
test-get-models.phpt \
test-get-models-unsupported-hw.phpt \
test-install.phpt \
test-logging.phpt \
test-version-get.phpt \
test-version-check.phpt
runtests.sh: functions.phpt
functions.phpt: functions.phpt.in
$(AM_V_GEN)sed \
-e 's|[@]abs_srcdir[@]|$(abs_srcdir)|g' \
< $< > $@-t && \
chmod a+x $@-t && \
mv $@-t $@
TESTS_ENVIRONMENT = \
abs_builddir="$(abs_builddir)" \
abs_srcdir="$(abs_srcdir)" \
LC_ALL=C
CLEANFILES = functions.phpt
|