Commit ad251083 authored by Richard Levitte's avatar Richard Levitte
Browse files

Skip the CMS test if configured 'no-cms'

parent 98f2e513
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -100,6 +100,13 @@ my $no_ec2m;
my $no_ecdh;
my $ossl8 = `$ossl_path version -v` =~ /0\.9\.8/;

system ("$ossl_path no-cms > $null_path");
if ($? == 0)
	{
	print STDERR "CMS disabled.  skipping...\n";
	exit 0;
	}

system ("$ossl_path no-ec > $null_path");
if ($? == 0)
	{