From: Richard Levitte Date: Fri, 16 Feb 2018 22:34:32 +0000 (+0100) Subject: test_ssl_old: avoid empty strings for flags X-Git-Tag: OpenSSL_1_1_1-pre2~132 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62930b2ecf6ce308fd2ae9ee3e34ace8ba698aac;p=openssl test_ssl_old: avoid empty strings for flags Reviewed-by: Paul Dale Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/5396) --- 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"); } }