summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Laurie <ben@links.org>2013-08-21 04:21:57 +0100
committerDr. Stephen Henson <steve@openssl.org>2013-10-01 14:01:19 +0100
commita808002bc3eb59191366ba81cac1c00f0f130f7a (patch)
tree6c8e918093d42ab8c03af270845a7881adcd4025
parent2fc368c1115bd789b47d070111ec898db23c58c2 (diff)
downloadopenssl-new-a808002bc3eb59191366ba81cac1c00f0f130f7a.tar.gz
Correctly test for no-ec.
(cherry picked from commit d5605699a15d870457f96b3e1795135228547324)
-rw-r--r--test/cms-test.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cms-test.pl b/test/cms-test.pl
index 5e553c84c9..006733a6be 100644
--- a/test/cms-test.pl
+++ b/test/cms-test.pl
@@ -90,7 +90,7 @@ if ($? == 0)
{
$no_ec = 1;
}
-elsif ($? == 1)
+elsif ($? == 256)
{
$no_ec = 0;
}