From 62930b2ecf6ce308fd2ae9ee3e34ace8ba698aac Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 16 Feb 2018 23:34:32 +0100 Subject: [PATCH 1/1] 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) --- 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 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"); } } -- 2.34.1