Merge pull request #237 from kaleb-himes/32-bit-ocsp

Also account for 32-bit users with ocsp test
This commit is contained in:
Moisés Guimarães 2016-01-04 09:33:12 -03:00
commit 8a47c1d01e
1 changed files with 8 additions and 0 deletions

View File

@ -753,6 +753,14 @@ THREAD_RETURN WOLFSSL_THREAD client_test(void* args)
done = 1;
#endif
/* www.globalsign.com only supports static RSA or ECDHE with AES */
/* We cannot expect users to have on static RSA so test for ECC only
* as some users will most likely be on 32-bit systems where ECC
* is not enabled by default */
#if defined(HAVE_OCSP) && !defined(HAVE_ECC)
done = 1;
#endif
#ifndef NO_PSK
done = 1;
#endif