We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 940f892 commit cdd608bCopy full SHA for cdd608b
libcxx/test/std/time/time.zone/time.zone.timezone/time.zone.members/sys_info.zdump.pass.cpp
@@ -13,9 +13,6 @@
13
// XFAIL: libcpp-has-no-experimental-tzdb
14
// XFAIL: availability-tzdb-missing
15
16
-// TODO TZDB Investigate
17
-// UNSUPPORTED: target={{armv(7|8)l-linux-gnueabihf}}
18
-
19
#include <chrono>
20
#include <format>
21
#include <fstream>
@@ -28,7 +25,7 @@
28
25
// The year range to validate. The dates used in practice are expected to be
29
26
// inside the tested range.
30
27
constexpr std::chrono::year first{1800};
31
-constexpr std::chrono::year last{2100};
+constexpr std::chrono::year last{sizeof(time_t) == 8 ? 2100 : 2037};
32
33
// A custom sys_info class that also stores the name of the time zone.
34
// Its formatter matches the output of zdump.
0 commit comments