php: move tests under a tests subdirectory

This eases fixes the classname in the junit output of run-tests.php,
which now can be properly handled by junit XML consumers.
This commit is contained in:
Pino Toscano
2014-03-18 15:12:26 +01:00
parent 7fb823e427
commit 251a1934c9
4 changed files with 1 additions and 1 deletions

View File

@@ -41,7 +41,7 @@ rm -f env
echo "PATH=$PATH" > env
printenv | grep -E '^(LIBGUESTFS|LIBVIRT|LIBVIRTD|VIRTLOCKD|LD|MALLOC)_' >> env
TESTS=$(echo guestfs_php_*.phpt)
TESTS=$(echo tests/guestfs_php_*.phpt)
echo TESTS: $TESTS
make test TESTS="$TESTS" PHP_EXECUTABLE="$PWD/php-for-tests.sh" REPORT_EXIT_STATUS=1