aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/aesgcmtest.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/aesgcmtest.c b/test/aesgcmtest.c
index 119d316a26..25e6f65fa9 100644
--- a/test/aesgcmtest.c
+++ b/test/aesgcmtest.c
@@ -116,7 +116,6 @@ static int badkeylen_test(void)
return ret;
}
-#ifdef FIPS_MODULE
static int ivgen_test(void)
{
unsigned char iv_gen[16];
@@ -127,14 +126,11 @@ static int ivgen_test(void)
return do_encrypt(iv_gen, ct, &ctlen, tag, &taglen)
&& do_decrypt(iv_gen, ct, ctlen, tag, taglen);
}
-#endif /* FIPS_MODULE */
int setup_tests(void)
{
ADD_TEST(kat_test);
ADD_TEST(badkeylen_test);
-#ifdef FIPS_MODULE
ADD_TEST(ivgen_test);
-#endif /* FIPS_MODULE */
return 1;
}