Skip a no-dsa test in the fipsinstall test
authorMatt Caswell <matt@openssl.org>
Mon, 20 Apr 2020 13:18:36 +0000 (14:18 +0100)
committerMatt Caswell <matt@openssl.org>
Wed, 22 Apr 2020 09:32:47 +0000 (10:32 +0100)
In a similar way to the previous commit we also skip a fipsinstall test
if DSA has been disabled.

Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/11582)

test/recipes/03-test_fipsinstall.t

index 78f496b8a11f8886689b29abe33b0503f35b6c15..65485fe50d7a667bdbc4520ca41c70f209aa3103 100644 (file)
@@ -115,10 +115,14 @@ SKIP: {
 }
 
 # corrupt a Signature test
-ok(!run(app(['openssl', 'fipsinstall', '-out', 'fips.conf', '-module', $infile,
-            '-provider_name', 'fips', '-mac_name', 'HMAC',
-            '-macopt', 'digest:SHA256', '-macopt', 'hexkey:00',
-            '-section_name', 'fips_install',
-            '-corrupt_desc', 'DSA',
-            '-corrupt_type', 'KAT_Signature'])),
-   "fipsinstall fails when the signature result is corrupted");
+SKIP: {
+    skip "Skipping Signature DSA corruption test because of no dsa in this build", 1
+        if disabled("dsa");
+    ok(!run(app(['openssl', 'fipsinstall', '-out', 'fips.conf', '-module', $infile,
+                '-provider_name', 'fips', '-mac_name', 'HMAC',
+                '-macopt', 'digest:SHA256', '-macopt', 'hexkey:00',
+                '-section_name', 'fips_install',
+                '-corrupt_desc', 'DSA',
+                '-corrupt_type', 'KAT_Signature'])),
+       "fipsinstall fails when the signature result is corrupted");
+}