From 4438b8e92db3171c84e8db59f58aa4892fccfc84 Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Tue, 25 Jul 2017 11:25:11 -0600 Subject: [PATCH] update unit test case with DES3 and FIPS --- tests/api.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/api.c b/tests/api.c index 6ee40b59a..8b9a32123 100644 --- a/tests/api.c +++ b/tests/api.c @@ -5239,6 +5239,7 @@ static int test_wc_Des3_SetIV (void) } } +#ifndef HAVE_FIPS /* no sanity checks with FIPS wrapper */ /* Test explicitly wc_Des3_SetIV() */ if (ret == 0) { ret = wc_Des3_SetIV(NULL, iv); @@ -5248,6 +5249,7 @@ static int test_wc_Des3_SetIV (void) ret = SSL_FATAL_ERROR; } } +#endif printf(resultFmt, ret == 0 ? passed : failed);