mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
test/recipes/02-test_ordinals.t: Take '?' and '?+' into account
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/10348)
This commit is contained in:
parent
b6fc6620cf
commit
6af1b11848
@ -41,8 +41,11 @@ sub testordinals
|
||||
#Some ordinals can be repeated, e.g. if one is VMS and another is !VMS
|
||||
$newqual = $tokens[4];
|
||||
$newqual =~ s/!//g;
|
||||
if ($cnt > $tokens[1]
|
||||
|| ($cnt == $tokens[1] && ($qualifier ne $newqual
|
||||
my $number = $tokens[1];
|
||||
$number = $cnt + 1 if $number eq '?';
|
||||
$number = $cnt if $number eq '?+';
|
||||
if ($cnt > $number
|
||||
|| ($cnt == $number && ($qualifier ne $newqual
|
||||
|| $qualifier eq ""))) {
|
||||
print STDERR "Invalid ordinal detected: ".$tokens[1]."\n";
|
||||
$ret = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user