[libcxx-commits] [PATCH] D126376: [libc++][CI] aix os do not have alternative for my_facet
Digger Lin via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed May 25 06:44:28 PDT 2022
DiggerLin created this revision.
DiggerLin added reviewers: Mordante, daltenty, hubert.reinterpretcast, libc++.
Herald added a project: All.
DiggerLin requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added 1 blocking reviewer(s): libc++.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D126376
Files:
libcxx/test/std/localization/locale.categories/category.time/locale.time.put.byname/put1.pass.cpp
Index: libcxx/test/std/localization/locale.categories/category.time/locale.time.put.byname/put1.pass.cpp
===================================================================
--- libcxx/test/std/localization/locale.categories/category.time/locale.time.put.byname/put1.pass.cpp
+++ libcxx/test/std/localization/locale.categories/category.time/locale.time.put.byname/put1.pass.cpp
@@ -8,7 +8,6 @@
//
// NetBSD does not support LC_TIME at the moment
// XFAIL: netbsd
-// XFAIL: LIBCXX-AIX-FIXME
// REQUIRES: locale.en_US.UTF-8
// REQUIRES: locale.fr_FR.UTF-8
@@ -83,7 +82,7 @@
cpp17_output_iterator<char*> iter =
f.put(cpp17_output_iterator<char*>(str), ios, '*', &t, pat.data(), pat.data() + pat.size());
std::string ex(str, base(iter));
-#if defined(_WIN32) || defined(__APPLE__)
+#if defined(_WIN32) || defined(__APPLE__) || defined(_AIX)
// These platforms have no alternative
assert(ex == "Today is \xE5\x9C\x9F\xE6\x9B\x9C\xE6\x97\xA5 which is the 6th day or alternatively 6.");
#else
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D126376.431967.patch
Type: text/x-patch
Size: 1038 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220525/1b0571bb/attachment.bin>
More information about the libcxx-commits
mailing list