Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-12 20:26:16 +0300
committerRichard Levitte <levitte@openssl.org>2016-02-12 22:56:46 +0300
commitb44b935e3966ac03c581e267e9a99547f91dcb78 (patch)
treea40373a64d404f8f64321d4235a0c041d69dda8e /test/recipes/70-test_sslcertstatus.t
parentb843cdb1054413b97739433fde7fa18496ab222f (diff)
Let all TLSProxy based tests display debug text conditionally
If the environment variable HARNESS_ACTIVE isn't defined or HARNESS_VERBOSE is defined, it's probable that lots of output is desired. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/recipes/70-test_sslcertstatus.t')
-rwxr-xr-xtest/recipes/70-test_sslcertstatus.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/recipes/70-test_sslcertstatus.t b/test/recipes/70-test_sslcertstatus.t
index a7f2d8a2b1..9a0c5f8eac 100755
--- a/test/recipes/70-test_sslcertstatus.t
+++ b/test/recipes/70-test_sslcertstatus.t
@@ -74,7 +74,8 @@ $ENV{OPENSSL_ia32cap} = '~0x200000200000000';
my $proxy = TLSProxy::Proxy->new(
\&certstatus_filter,
cmdstr(app(["openssl"])),
- srctop_file("apps", "server.pem")
+ srctop_file("apps", "server.pem"),
+ (!$ENV{HARNESS_ACTIVE} || $ENV{HARNESS_VERBOSE})
);
plan tests => 1;