From 219007b655e7ce0b0dec03ab14ed5c7f2c8d2370 Mon Sep 17 00:00:00 2001
From: Tavian Barnes <tavianator@tavianator.com>
Date: Mon, 10 Mar 2025 13:23:27 -0400
Subject: tests/xtime: Don't waste time checking the system's timegm()

Just check our wrapper's error detection, like we do for xmktime().
---
 tests/xtime.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

(limited to 'tests')

diff --git a/tests/xtime.c b/tests/xtime.c
index 3472bea..c890a1e 100644
--- a/tests/xtime.c
+++ b/tests/xtime.c
@@ -154,6 +154,14 @@ static void check_xtimegm(void) {
 		.tm_isdst = -1,
 	};
 
+#if BFS_HAS_TIMEGM
+	// Check that xtimegm(-1) isn't an error
+	for (time_t time = -10; time <= 10; ++time) {
+		if (bfs_check(gmtime_r(&time, &tm), "gmtime_r(%jd)", (intmax_t)time)) {
+			check_one_xtimegm(&tm);
+		}
+	}
+#else
 	// Check equivalence with mktime()
 	for (tm.tm_year =  10; tm.tm_year <= 200; tm.tm_year += 10)
 	for (tm.tm_mon  =  -3; tm.tm_mon  <=  15; tm.tm_mon  +=  3)
@@ -164,13 +172,12 @@ static void check_xtimegm(void) {
 		check_one_xtimegm(&tm);
 	}
 
-#if !BFS_HAS_TIMEGM
 	// Check integer overflow cases
 	check_xtimegm_overflow(&(struct tm) { .tm_sec = INT_MAX, .tm_min = INT_MAX });
 	check_xtimegm_overflow(&(struct tm) { .tm_min = INT_MAX, .tm_hour = INT_MAX });
 	check_xtimegm_overflow(&(struct tm) { .tm_hour = INT_MAX, .tm_mday = INT_MAX });
 	check_xtimegm_overflow(&(struct tm) { .tm_mon = INT_MAX, .tm_year = INT_MAX });
-#endif
+#endif // !BFS_HAS_TIMEGM
 }
 
 void check_xtime(void) {
-- 
cgit v1.2.3