From f47a9c8b2057caedd7eb1f5ffe39333afb3730fa Mon Sep 17 00:00:00 2001 From: Eric Blankenhorn Date: Fri, 4 Oct 2019 09:41:48 -0500 Subject: [PATCH] Add conditional to 64-bit tests --- tests/api.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/api.c b/tests/api.c index 0782296dd..2fde17c14 100644 --- a/tests/api.c +++ b/tests/api.c @@ -27420,6 +27420,7 @@ static void test_wolfSSL_ASN1_INTEGER_set() AssertIntEQ(ret, 1); wolfSSL_ASN1_INTEGER_free(a); +#ifndef TIME_T_NOT_64BIT /* 2147483648 */ a = wolfSSL_ASN1_INTEGER_new(); val = 2147483648; @@ -27434,6 +27435,7 @@ static void test_wolfSSL_ASN1_INTEGER_set() AssertIntEQ(a->negative, 1); AssertIntEQ(ret, 1); wolfSSL_ASN1_INTEGER_free(a); +#endif printf(resultFmt, passed); #endif