Skip to content

Commit

Permalink
test_ssl_old: avoid empty strings for flags
Browse files Browse the repository at this point in the history
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from #5396)
  • Loading branch information
levitte authored and mattcaswell committed Feb 19, 2018
1 parent 5845f7d commit 62930b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/recipes/80-test_ssl_old.t
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}
Expand Down

0 comments on commit 62930b2

Please sign in to comment.