Fix to adjust WC_ASYNC_DEV_SIZE. Fix for tests/test-trustpeer.conf typo in include.am.

This commit is contained in:
David Garske
2018-12-27 11:08:49 -08:00
parent 2351047409
commit cc8c6078b6
3 changed files with 4 additions and 4 deletions

View File

@ -37,6 +37,6 @@ EXTRA_DIST += tests/test.conf \
tests/test-fails.conf \ tests/test-fails.conf \
tests/test-chains.conf \ tests/test-chains.conf \
tests/test-altchains.conf \ tests/test-altchains.conf \
tests/test-trustedpeer.conf \ tests/test-trustpeer.conf \
tests/test-dhprime.conf tests/test-dhprime.conf
DISTCLEANFILES+= tests/.libs/unit.test DISTCLEANFILES+= tests/.libs/unit.test

View File

@ -43,7 +43,7 @@
* to need the size of the structure. */ * to need the size of the structure. */
typedef struct WOLFSSL_AES_KEY { typedef struct WOLFSSL_AES_KEY {
/* aligned and big enough for Aes from wolfssl/wolfcrypt/aes.h */ /* aligned and big enough for Aes from wolfssl/wolfcrypt/aes.h */
ALIGN16 void* holder[(360 + WC_ASYNC_DEV_SIZE)/ sizeof(void*)]; ALIGN16 void* holder[(376 + WC_ASYNC_DEV_SIZE)/ sizeof(void*)];
#ifdef GCM_TABLE #ifdef GCM_TABLE
/* key-based fast multiplication table. */ /* key-based fast multiplication table. */
ALIGN16 void* M0[4096 / sizeof(void*)]; ALIGN16 void* M0[4096 / sizeof(void*)];

View File

@ -1647,9 +1647,9 @@ extern void uITRON4_free(void *p) ;
#define HAVE_WOLF_EVENT #define HAVE_WOLF_EVENT
#ifdef WOLFSSL_ASYNC_CRYPT_TEST #ifdef WOLFSSL_ASYNC_CRYPT_TEST
#define WC_ASYNC_DEV_SIZE 328+24 #define WC_ASYNC_DEV_SIZE 168
#else #else
#define WC_ASYNC_DEV_SIZE 328 #define WC_ASYNC_DEV_SIZE 336
#endif #endif
#if !defined(HAVE_CAVIUM) && !defined(HAVE_INTEL_QA) && \ #if !defined(HAVE_CAVIUM) && !defined(HAVE_INTEL_QA) && \