Use phpunit's directory feature
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
620ee00ac5
commit
13e04bc7d4
1 changed files with 3 additions and 11 deletions
14
autotest.sh
14
autotest.sh
|
@ -380,17 +380,9 @@ function execute_tests {
|
||||||
echo "No coverage"
|
echo "No coverage"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d "$2" ]; then
|
echo "${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3"
|
||||||
for f in $(find "$2" -name '*Test.php'); do
|
"${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3"
|
||||||
echo "${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" / "$f" "$3"
|
RESULT=$?
|
||||||
"${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$f" "$3"
|
|
||||||
RESULT=$?
|
|
||||||
done;
|
|
||||||
else
|
|
||||||
echo "${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3"
|
|
||||||
"${PHPUNIT[@]}" --configuration phpunit-autotest.xml $GROUP $COVER --log-junit "autotest-results-$DB.xml" "$2" "$3"
|
|
||||||
RESULT=$?
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$PRIMARY_STORAGE_CONFIG" == "swift" ] ; then
|
if [ "$PRIMARY_STORAGE_CONFIG" == "swift" ] ; then
|
||||||
cd ..
|
cd ..
|
||||||
|
|
Loading…
Reference in a new issue