mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
ba6d753340
Patch by David Kilzer <ddkilzer@theracingworld.com>. 2xr=afranke
13 lines
262 B
Bash
Executable File
13 lines
262 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TEST_VERBOSE=0
|
|
PART1='use Test::Harness qw(&runtests $verbose); $verbose='
|
|
PART2='; runtests @ARGV;'
|
|
for f in $*; do
|
|
if [ "$f" = "--verbose" ] ; then
|
|
TEST_VERBOSE=1
|
|
fi
|
|
done
|
|
|
|
/usr/bonsaitools/bin/perl -e "${PART1}${TEST_VERBOSE}${PART2}" t/*.t
|