aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/run_tests4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/run_tests b/test/run_tests
index b9912cf..c1cd70c 100644
--- a/test/run_tests
+++ b/test/run_tests
@@ -44,5 +44,7 @@ if(defined $ENV{'OPENSSL_ROOT_DIR'}) {
$ENV{'PATH'} =
join(':', $openssl_bindir, split(/:/, $ENV{'PATH'}));
}
-my $harness = TAP::Harness->new();
+my $harness = TAP::Harness->new({
+ verbosity => (($ENV{CTEST_INTERACTIVE_DEBUG_MODE} // 0) != 0)
+});
exit ($harness->runtests(glob("*.t"))->all_passed() ? 0 : 1);