summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2021-08-10 15:07:17 +0200
committerMax Kellermann <max@musicpd.org>2021-08-10 15:07:19 +0200
commit7f94af8b2cf94561e5d8f17878b9e86d2e2bb93d (patch)
tree8fbe71be783451854a80dc47fb38b812cd6807ef
parent09d74f05c3f6f008da6e2c60ecb9b560486e6890 (diff)
test/time/TestISO8601: disable on Windows for now
-rw-r--r--test/time/TestISO8601.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/time/TestISO8601.cxx b/test/time/TestISO8601.cxx
index f8a327ee3..68566bb5e 100644
--- a/test/time/TestISO8601.cxx
+++ b/test/time/TestISO8601.cxx
@@ -89,6 +89,11 @@ static constexpr struct {
TEST(ISO8601, Parse)
{
+#ifdef _WIN32
+ // TODO: re-enable when ParseISO8601() has been implemented on Windows
+ GTEST_SKIP();
+#endif
+
for (const auto &i : parse_tests) {
const auto result = ParseISO8601(i.s);
EXPECT_EQ(std::chrono::system_clock::to_time_t(result.first), i.t);