test_ssl_old: avoid empty strings for flags
Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5396)
This commit is contained in:
parent
5845f7de81
commit
62930b2ecf
1 changed files with 2 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue