mirror of
https://github.com/openssl/openssl.git
synced 2026-05-07 20:12:39 +00:00
test/asn1_time_test.c: make it work on 64-bit HP-UX.
HP-UX gmtime fails with ERANGE past 19011213204552Z, so skip some tests. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5742)
This commit is contained in:
@@ -346,10 +346,12 @@ int setup_tests(void)
|
||||
if (sizeof(time_t) > sizeof(uint32_t)) {
|
||||
TEST_info("Adding 64-bit time_t tests");
|
||||
ADD_ALL_TESTS(test_table_pos_64bit, OSSL_NELEM(tbl_testdata_pos_64bit));
|
||||
#ifndef __hpux
|
||||
if (!(t > 0) && ptm != NULL) {
|
||||
TEST_info("Adding negative-sign 64-bit time_t tests");
|
||||
ADD_ALL_TESTS(test_table_neg_64bit, OSSL_NELEM(tbl_testdata_neg_64bit));
|
||||
}
|
||||
#endif
|
||||
}
|
||||
ADD_ALL_TESTS(test_table_compare, OSSL_NELEM(tbl_compare_testdata));
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user