macro guard on test case

This commit is contained in:
Jacob Barthelmeh
2021-06-22 22:56:35 +07:00
parent 3cd43cf692
commit 647bde671c

View File

@@ -25238,7 +25238,7 @@ static void test_wc_PKCS7_EncodeDecodeEnvelopedData (void)
wc_FreeRng(&rng); wc_FreeRng(&rng);
#endif #endif
#ifdef USE_CERT_BUFFERS_2048 #if defined(USE_CERT_BUFFERS_2048) && !defined(NO_DES3)
{ {
byte out[7]; byte out[7];
byte *cms; byte *cms;
@@ -25265,7 +25265,7 @@ static void test_wc_PKCS7_EncodeDecodeEnvelopedData (void)
AssertIntEQ(XMEMCMP(out, "test", 4), 0); AssertIntEQ(XMEMCMP(out, "test", 4), 0);
wc_PKCS7_Free(pkcs7); wc_PKCS7_Free(pkcs7);
} }
#endif /* USE_CERT_BUFFERS_2048 */ #endif /* USE_CERT_BUFFERS_2048 && !NO_DES3 */
#endif /* HAVE_PKCS7 */ #endif /* HAVE_PKCS7 */
} /* END test_wc_PKCS7_EncodeEnvelopedData() */ } /* END test_wc_PKCS7_EncodeEnvelopedData() */