diff options
author | Matt Caswell <matt@openssl.org> | 2016-03-11 14:50:55 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-03-11 14:52:26 +0100 |
commit | ad87a3dc2ca3bfd4642cf2fdc524535916a85c2c (patch) | |
tree | 140c3f498c2912d92b9e5a87dc0b3a2bcc7ccd84 | |
parent | Avoid getting unresolved referense to bn_expand2 in test/bntest.c (diff) | |
download | openssl-ad87a3dc2ca3bfd4642cf2fdc524535916a85c2c.tar.xz openssl-ad87a3dc2ca3bfd4642cf2fdc524535916a85c2c.zip |
Suppress CT warnings in test_ssl
Running test_ssl with HARNESS_VERBOSE results in lots of spurious warnings
about an inability to load the CT config file. This fixes it.
Reviewed-by: Richard Levitte <levitte@openssl.org>
-rw-r--r-- | test/recipes/80-test_ssl.t | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/recipes/80-test_ssl.t b/test/recipes/80-test_ssl.t index 5412cb6832..ba57695b22 100644 --- a/test/recipes/80-test_ssl.t +++ b/test/recipes/80-test_ssl.t @@ -11,6 +11,8 @@ use OpenSSL::Test::Utils; setup("test_ssl"); +$ENV{CTLOG_FILE} = srctop_file("test", "ct", "log_list.conf"); + my ($no_rsa, $no_dsa, $no_dh, $no_ec, $no_srp, $no_psk, $no_ssl3, $no_tls1, $no_tls1_1, $no_tls1_2, $no_dtls, $no_dtls1, $no_dtls1_2, $no_ct) = |