mirror of
https://github.com/openssl/openssl.git
synced 2025-01-30 14:01:55 +08:00
Skipping all tests just because one algorithm is disabled seems a bit harsch.
PR: 1089
This commit is contained in:
parent
cd27b13b1d
commit
34f0b26424
@ -130,15 +130,21 @@ if (system("make 2>&1 | tee make.log") > 255) {
|
|||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
$_=$options;
|
# Not sure why this is here. The tests themselves can detect if their
|
||||||
s/no-asm//;
|
# particular feature isn't included, and should therefore skip themselves.
|
||||||
s/no-shared//;
|
# To skip *all* tests just because one algorithm isn't included is like
|
||||||
s/no-krb5//;
|
# shooting mosquito with an elephant gun...
|
||||||
if (/no-/)
|
# -- Richard Levitte, inspired by problem report 1089
|
||||||
{
|
#
|
||||||
print OUT "Test skipped.\n";
|
#$_=$options;
|
||||||
goto err;
|
#s/no-asm//;
|
||||||
}
|
#s/no-shared//;
|
||||||
|
#s/no-krb5//;
|
||||||
|
#if (/no-/)
|
||||||
|
#{
|
||||||
|
# print OUT "Test skipped.\n";
|
||||||
|
# goto err;
|
||||||
|
#}
|
||||||
|
|
||||||
print "Running make test...\n";
|
print "Running make test...\n";
|
||||||
if (system("make test 2>&1 | tee maketest.log") > 255)
|
if (system("make test 2>&1 | tee maketest.log") > 255)
|
||||||
|
Loading…
Reference in New Issue
Block a user