Merge pull request #2178 from JacobBarthelmeh/Testing

add guard on test case for pkcs7 with no aes
pull/2180/head
John Safranek 2019-03-25 09:42:54 -07:00 committed by GitHub
commit f493ff859c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -16636,7 +16636,8 @@ static void test_wc_PKCS7_BER(void)
static void test_PKCS7_signed_enveloped(void)
{
#if defined(HAVE_PKCS7) && !defined(NO_FILESYSTEM) && !defined(NO_RSA)
#if defined(HAVE_PKCS7) && !defined(NO_FILESYSTEM) && !defined(NO_RSA) \
&& !defined(NO_AES)
XFILE f;
PKCS7* pkcs7;
PKCS7* inner;