Added application-specific test arguments to test script

This commit is contained in:
Joseph Henry 2015-12-06 17:55:48 -08:00
commit 1dec034f77
4 changed files with 15 additions and 422 deletions

View file

@ -18,6 +18,11 @@ find . -mindepth 2 -maxdepth 2 -type d | while read testdir; do
echo "*** Testing: '$testdir'..."
rm _results/*.tmp
if [[ $testdir != *$1* ]]
then
continue
fi
# Stage scripts
cp $test_script $testdir/$test_script
cd $testdir
@ -29,4 +34,4 @@ find . -mindepth 2 -maxdepth 2 -type d | while read testdir; do
cd ../../
done
echo "*** Done"
echo "*** Done"