Can't have macros within macros

This commit is contained in:
Juliusz Sosinowicz
2021-10-26 21:27:09 +02:00
parent 7d6f8ea255
commit a738c16b2f

View File

@ -37607,6 +37607,7 @@ static void test_wolfSSL_PEM_write_bio_X509(void)
BIO* input; BIO* input;
BIO* output; BIO* output;
X509* x509 = NULL; X509* x509 = NULL;
int expectedLen;
printf(testingFmt, "wolfSSL_PEM_write_bio_X509()"); printf(testingFmt, "wolfSSL_PEM_write_bio_X509()");
@ -37620,17 +37621,16 @@ static void test_wolfSSL_PEM_write_bio_X509(void)
AssertIntEQ(PEM_write_bio_X509(output, x509), WOLFSSL_SUCCESS); AssertIntEQ(PEM_write_bio_X509(output, x509), WOLFSSL_SUCCESS);
AssertIntEQ(wolfSSL_BIO_get_len(output),
#ifdef WOLFSSL_ALT_NAMES #ifdef WOLFSSL_ALT_NAMES
/* Here we copy the validity struct from the original */ /* Here we copy the validity struct from the original */
2000 expectedLen = 2000;
#else #else
/* Only difference is that we generate the validity in generalized /* Only difference is that we generate the validity in generalized
* time. Generating UTCTime vs Generalized time should be fixed in * time. Generating UTCTime vs Generalized time should be fixed in
* the future */ * the future */
2004 expectedLen = 2004;
#endif #endif
); AssertIntEQ(wolfSSL_BIO_get_len(output), expectedLen);
/* Reset output buffer */ /* Reset output buffer */
BIO_free(output); BIO_free(output);
@ -37649,15 +37649,15 @@ static void test_wolfSSL_PEM_write_bio_X509(void)
/* Check that we generate a smaller output since the AKID will /* Check that we generate a smaller output since the AKID will
* only contain the KeyIdentifier without any additional * only contain the KeyIdentifier without any additional
* information */ * information */
AssertIntEQ(wolfSSL_BIO_get_len(output),
#ifdef WOLFSSL_ALT_NAMES #ifdef WOLFSSL_ALT_NAMES
/* Here we copy the validity struct from the original */ /* Here we copy the validity struct from the original */
1688 expectedLen = 1688;
#else #else
/* UTCTime vs Generalized time */ /* UTCTime vs Generalized time */
1692 expectedLen = 1692;
#endif #endif
); AssertIntEQ(wolfSSL_BIO_get_len(output), expectedLen);
BIO_free(input); BIO_free(input);
BIO_free(output); BIO_free(output);