mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
875df8157a
No review needed on tests (but review will be needed for all test changes after this one)
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}
|