Skip to content

Commit 241b502

Browse files
committed
[TA-100] test.c: fix unbalanced/unterminated preprocessor blocks from
previous merge
1 parent 5618b8a commit 241b502

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
@@ -26891,7 +26891,6 @@ WOLFSSL_TEST_SUBROUTINE wc_test_ret_t rsa_test(void)
2689126891
if (ret < 0)
2689226892
ERROR_OUT(WC_TEST_RET_ENC_EC(ret), exit_rsa);
2689326893
TEST_SLEEP();
26894-
#endif /* !WOLFSSL_MICROCHIP_TA100 */
2689526894

2689626895
#elif defined(WOLFSSL_PUBLIC_MP)
2689726896
{
@@ -71073,8 +71072,8 @@ static void print_fiducials(void) {
7107371072
fiducial1, fiducial2, fiducial3, fiducial4);
7107471073
}
7107571074

71076-
#if defined(NO_CRYPT_TEST) && !defined(WC_TEST_EXPORT_SUBTESTS)
71075+
#else /* NO_CRYPT_TEST && !WC_TEST_EXPORT_SUBTESTS */
7107771076
#ifndef NO_MAIN_DRIVER
7107871077
int main(void) { return 0; }
7107971078
#endif /* !NO_MAIN_DRIVER */
71080-
#endif /* defined(NO_CRYPT_TEST) && !defined(WC_TEST_EXPORT_SUBTESTS) */
71079+
#endif /* !NO_CRYPT_TEST || WC_TEST_EXPORT_SUBTESTS */

0 commit comments

Comments
 (0)