diff options
author | Richard Levitte <levitte@openssl.org> | 2018-02-16 23:34:32 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-02-19 10:47:37 +0000 |
commit | 62930b2ecf6ce308fd2ae9ee3e34ace8ba698aac (patch) | |
tree | 6f6f7e3732ee50229be77c5ecdfb840163979a4a | |
parent | 5845f7de8165f35829e49acd41f6a2fc3698f221 (diff) | |
download | openssl-new-62930b2ecf6ce308fd2ae9ee3e34ace8ba698aac.tar.gz |
test_ssl_old: avoid empty strings for flags
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5396)
-rw-r--r-- | test/recipes/80-test_ssl_old.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/recipes/80-test_ssl_old.t b/test/recipes/80-test_ssl_old.t index 543ca96135..f89779c0c3 100644 --- a/test/recipes/80-test_ssl_old.t +++ b/test/recipes/80-test_ssl_old.t @@ -450,7 +450,8 @@ sub testssl { note "*****SKIPPING $protocol $cipher"; ok(1); } else { - ok(run(test([@ssltest, @exkeys, "-cipher", $cipher, $flag])), + ok(run(test([@ssltest, @exkeys, "-cipher", $cipher, + $flag || ()])), "Testing $cipher"); } } |