summaryrefslogtreecommitdiffstats
path: root/runtests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'runtests.sh')
-rwxr-xr-xruntests.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtests.sh b/runtests.sh
index c558fcf7d..ab18e2e00 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -1,12 +1,12 @@
#!/bin/sh
-export VERBOSE=0
+export TEST_VERBOSE=0
PART1='use Test::Harness qw(&runtests $verbose); $verbose='
PART2='; runtests @ARGV;'
for f in $*; do
if [ $f == "--verbose" ] ; then
- export VERBOSE=1
+ export TEST_VERBOSE=1
fi
done
-/usr/bonsaitools/bin/perl -e "${PART1}${VERBOSE}${PART2}" t/*.t
+/usr/bonsaitools/bin/perl -e "${PART1}${TEST_VERBOSE}${PART2}" t/*.t