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_0h~69 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c99eaf2135c9c3ff5a00dccd00d332c0c5351776;p=oweals%2Fopenssl.git 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) (cherry picked from commit 62930b2ecf6ce308fd2ae9ee3e34ace8ba698aac) --- diff --git a/test/recipes/80-test_ssl_old.t b/test/recipes/80-test_ssl_old.t index 97ef82189a..bafb796cd9 100644 --- a/test/recipes/80-test_ssl_old.t +++ b/test/recipes/80-test_ssl_old.t @@ -476,7 +476,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"); } }