Don't run ECDH CMS tests if EC disabled.
This commit is contained in:
parent
14536c8c9c
commit
b85f8afe37
@ -82,8 +82,23 @@ my $smdir = "smime-certs";
|
|||||||
my $halt_err = 1;
|
my $halt_err = 1;
|
||||||
|
|
||||||
my $badcmd = 0;
|
my $badcmd = 0;
|
||||||
|
my $no_ec;
|
||||||
my $ossl8 = `$ossl_path version -v` =~ /0\.9\.8/;
|
my $ossl8 = `$ossl_path version -v` =~ /0\.9\.8/;
|
||||||
|
|
||||||
|
system ("$ossl_path no-ec >/dev/null");
|
||||||
|
if ($? == 0)
|
||||||
|
{
|
||||||
|
$no_ec = 1;
|
||||||
|
}
|
||||||
|
elsif ($? == 1)
|
||||||
|
{
|
||||||
|
$no_ec = 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
die "Error checking for EC support\n";
|
||||||
|
}
|
||||||
|
|
||||||
my @smime_pkcs7_tests = (
|
my @smime_pkcs7_tests = (
|
||||||
|
|
||||||
[
|
[
|
||||||
@ -472,6 +487,11 @@ sub run_smime_tests {
|
|||||||
$rscmd =~ s/-stream//;
|
$rscmd =~ s/-stream//;
|
||||||
$rvcmd =~ s/-stream//;
|
$rvcmd =~ s/-stream//;
|
||||||
}
|
}
|
||||||
|
if ($no_ec && $tnam =~ /ECDH/)
|
||||||
|
{
|
||||||
|
print "$tnam: skipped, EC disabled\n";
|
||||||
|
next;
|
||||||
|
}
|
||||||
system("$scmd$rscmd$redir");
|
system("$scmd$rscmd$redir");
|
||||||
if ($?) {
|
if ($?) {
|
||||||
print "$tnam: generation error\n";
|
print "$tnam: generation error\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user