diff options
author | Louis Dionne <ldionne@apple.com> | 2019-06-14 14:40:38 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2019-06-14 14:40:38 +0000 |
commit | 0feebef501fc9988493203dee0d86bb7792e587f (patch) | |
tree | 6c228715f3dbd8d9e0f107f234970ad864a6d14b | |
parent | 2dd0053d3adc36c10b5839cb9897d18dfa13ccf8 (diff) | |
download | bcm5719-llvm-0feebef501fc9988493203dee0d86bb7792e587f.tar.gz bcm5719-llvm-0feebef501fc9988493203dee0d86bb7792e587f.zip |
[libcxx] Add XFAIL for facet test when back-deploying to older macOS
llvm-svn: 363405
-rw-r--r-- | libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp index 00b0c3a69b6..c52695544a2 100644 --- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp @@ -13,6 +13,16 @@ // iter_type get(iter_type in, iter_type end, ios_base&, // ios_base::iostate& err, long& v) const; +// This test exercises the fix for PR28704, which isn't in the dylib for +// some systems. +// XFAIL: with_system_cxx_lib=macosx10.15 +// XFAIL: with_system_cxx_lib=macosx10.14 +// XFAIL: with_system_cxx_lib=macosx10.13 +// XFAIL: with_system_cxx_lib=macosx10.12 +// XFAIL: with_system_cxx_lib=macosx10.11 +// XFAIL: with_system_cxx_lib=macosx10.10 +// XFAIL: with_system_cxx_lib=macosx10.9 + #include <locale> #include <ios> #include <cassert> |