From c99eaf2135c9c3ff5a00dccd00d332c0c5351776 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 16 Feb 2018 23:34:32 +0100 Subject: [PATCH] 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) --- test/recipes/80-test_ssl_old.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"); } } -- 2.25.1