summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-05-08 13:09:56 +0100
committerDr. Stephen Henson <steve@openssl.org>2016-05-09 14:08:25 +0100
commitbe6bdab6f8a3c71a1bc54fd1c9b278398328ab99 (patch)
tree76b40a524928d15b9fc0c1dcb4b1dfafbd53d7fa /test
parent191c0e2e87c24a59b1007a23b3f04e6e8e4769a7 (diff)
Recognise VERBOSE and V as well as HARNESS_VERBOSE
PR#4462 Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test')
-rw-r--r--test/run_tests.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/run_tests.pl b/test/run_tests.pl
index b8fef7c80d..b8281acceb 100644
--- a/test/run_tests.pl
+++ b/test/run_tests.pl
@@ -9,6 +9,11 @@
use strict;
use warnings;
+# Recognise VERBOSE and V which is common on other projects.
+BEGIN {
+ $ENV{HARNESS_VERBOSE} = "yes" if $ENV{VERBOSE} || $ENV{V};
+}
+
use File::Spec::Functions qw/catdir catfile curdir abs2rel rel2abs/;
use File::Basename;
use Test::Harness qw/runtests $switches/;