Disabled an invalid test case.

This commit is contained in:
John Safranek 2011-12-15 17:07:16 -08:00
parent 8f2508b5d7
commit 9395e90c82
1 changed files with 3 additions and 1 deletions

View File

@ -273,6 +273,7 @@ int test_CyaSSL_new(void)
else
printf(resultFmt, passed);
#ifndef OPENSSL_EXTRA
printf(testingFmt, "CyaSSL_new(bad_ctx)");
ssl = CyaSSL_new(bad_ctx);
if (ssl != NULL)
@ -282,7 +283,8 @@ int test_CyaSSL_new(void)
}
else
printf(resultFmt, passed);
#endif /* OPENSSL_EXTRA */
printf(testingFmt, "CyaSSL_new(ctx)");
ssl = CyaSSL_new(ctx);
if (ssl == NULL)