Recognise VERBOSE and V as well as HARNESS_VERBOSE
[oweals/openssl.git] / test / run_tests.pl
index b8fef7c80d1d4df399195e0c50916d04777e7e0b..b8281acceb22ca9641df05cc80bb4bc521dea1ea 100644 (file)
@@ -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/;