From ed4af4249961a69449820e27b0baaf5116142b9e Mon Sep 17 00:00:00 2001 From: "jake%acutex.net" <> Date: Sat, 20 Oct 2001 05:39:46 +0000 Subject: Bug 103664 - Tests should "use strict;" and not contain any tabs. We should also use the TEST_VERBOSE environment variable instead of VERBOSE. Patch by David D. Kilzer Additional edits by myself to add the emacs mode line. Also, the change to runtests.sh was done by me. --- runtests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtests.sh') 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 -- cgit v1.2.3-24-g4f1b