From b9e0e94a016b0f93c1bf8d7b0d609b346ab16959 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 29 Mar 2025 08:20:49 -0700 Subject: [PATCH] Enable more chrono tests on Windows --- test/chrono-test.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/chrono-test.cc b/test/chrono-test.cc index 002d861b..9e86d126 100644 --- a/test/chrono-test.cc +++ b/test/chrono-test.cc @@ -375,10 +375,6 @@ TEST(chrono_test, local_time) { #endif specs.push_back("%Y-%m-%d %H:%M:%S"); -#ifdef _WIN32 - return; // Not supported on Windows. -#endif - for (const auto& spec : specs) { auto tm = fmt::gmtime(time.time_since_epoch().count()); auto sys_output = system_strftime(spec, &tm);