summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2008-03-02 12:59:36 +0000
committerStefan Bühler <stbuehler@web.de>2008-03-02 12:59:36 +0000
commit1431deba815f72d7978df851f2d35e1956f399fd (patch)
tree4398c1e057d92f4ff7ba4ad6d71fcff5cf76b764
parent85b8153dfcbbda0be24b422f16ab5107b7967dbb (diff)
downloadlighttpd-git-1431deba815f72d7978df851f2d35e1956f399fd.tar.gz
Add option to configure verbosity of check in commandline: "VERBOSE=1 make check"
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2114 152afb58-edef-0310-8abb-c4023f1b3aa9
-rwxr-xr-xtests/run-tests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests.pl b/tests/run-tests.pl
index 6dae9a8e..818f1c20 100755
--- a/tests/run-tests.pl
+++ b/tests/run-tests.pl
@@ -3,7 +3,7 @@
use strict;
use Test::Harness qw(&runtests $verbose);
-$verbose=0;
+$verbose = (defined $ENV{'VERBOSE'} ? $ENV{'VERBOSE'} : 0);;
my $srcdir = (defined $ENV{'srcdir'} ? $ENV{'srcdir'} : '.');