From 4800db1f9d06d1ad75267e7400464b6f05f5ed7d Mon Sep 17 00:00:00 2001 From: Masashi Honma Date: Wed, 17 Nov 2021 11:49:10 +0900 Subject: [PATCH] Enable max/min int test even when non 64bit platform Signed-off-by: Masashi Honma --- tests/api.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/api.c b/tests/api.c index 4b4bf0076..4d0cd1755 100644 --- a/tests/api.c +++ b/tests/api.c @@ -48551,7 +48551,6 @@ static void test_wolfSSL_ASN1_INTEGER_get_set(void) AssertIntEQ(ASN1_INTEGER_get(a), val); ASN1_INTEGER_free(a); -#ifndef TIME_T_NOT_64BIT /* int max (2147483647) */ a = ASN1_INTEGER_new(); val = 2147483647; @@ -48567,7 +48566,6 @@ static void test_wolfSSL_ASN1_INTEGER_get_set(void) AssertIntEQ(ret, 1); AssertIntEQ(ASN1_INTEGER_get(a), val); ASN1_INTEGER_free(a); -#endif printf(resultFmt, passed); #endif