No review needed on tests (but review will be needed for all test changes after this one) git-svn-id: svn://10.0.0.236/trunk@133524 18797224-902f-48f8-a5cc-f745e15eee43
11 lines
171 B
Bash
Executable File
11 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TEST_VERBOSE=0
|
|
for f in $*; do
|
|
if [ "$f" = "--verbose" ] ; then
|
|
TEST_VERBOSE="--verbose"
|
|
fi
|
|
done
|
|
|
|
/usr/bonsaitools/bin/perl runtests.pl ${TEST_VERBOSE}
|