Skip to content

Commit 19b8f39

Browse files
committed
[TA-100] test.c: fix unbalanced/unterminated preprocessor blocks from
previous merge
1 parent 7f266a4 commit 19b8f39

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

wolfcrypt/test/test.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26753,7 +26753,6 @@ WOLFSSL_TEST_SUBROUTINE wc_test_ret_t rsa_test(void)
2675326753
if (ret < 0)
2675426754
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), exit_rsa);
2675526755
TEST_SLEEP();
26756-
#endif /* !WOLFSSL_MICROCHIP_TA100 */
2675726756

2675826757
#elif defined(WOLFSSL_PUBLIC_MP)
2675926758
{
@@ -70870,8 +70869,8 @@ static void print_fiducials(void) {
7087070869
fiducial1, fiducial2, fiducial3, fiducial4);
7087170870
}
7087270871

70873-
#if defined(NO_CRYPT_TEST) && !defined(WC_TEST_EXPORT_SUBTESTS)
70872+
#else /* NO_CRYPT_TEST && !WC_TEST_EXPORT_SUBTESTS */
7087470873
#ifndef NO_MAIN_DRIVER
7087570874
int main(void) { return 0; }
7087670875
#endif /* !NO_MAIN_DRIVER */
70877-
#endif /* defined(NO_CRYPT_TEST) && !defined(WC_TEST_EXPORT_SUBTESTS) */
70876+
#endif /* !NO_CRYPT_TEST || WC_TEST_EXPORT_SUBTESTS */

0 commit comments

Comments
 (0)