diff options
author | Louis Dionne <ldionne@apple.com> | 2019-06-12 20:12:44 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2019-06-12 20:12:44 +0000 |
commit | 782fff1bf879e37c6d87c40763e33321238420ea (patch) | |
tree | 2be04d98d22865a324fbf5be8a6027df5c01aff9 /libcxx/test/std/containers | |
parent | ae2581cef3c5fbc98176ede0eeca7212876e5696 (diff) | |
download | bcm5719-llvm-782fff1bf879e37c6d87c40763e33321238420ea.tar.gz bcm5719-llvm-782fff1bf879e37c6d87c40763e33321238420ea.zip |
[libcxx] XFAIL some CTAD tests on AppleClang 10
AppleClang 10 doesn't contain some changes that are required for this
test to give the right error message.
llvm-svn: 363197
Diffstat (limited to 'libcxx/test/std/containers')
-rw-r--r-- | libcxx/test/std/containers/associative/map/map.cons/deduct.fail.cpp | 2 | ||||
-rw-r--r-- | libcxx/test/std/containers/associative/multimap/multimap.cons/deduct.fail.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/containers/associative/map/map.cons/deduct.fail.cpp b/libcxx/test/std/containers/associative/map/map.cons/deduct.fail.cpp index 9b228edb17c..2e719da6442 100644 --- a/libcxx/test/std/containers/associative/map/map.cons/deduct.fail.cpp +++ b/libcxx/test/std/containers/associative/map/map.cons/deduct.fail.cpp @@ -9,7 +9,7 @@ // <map> // UNSUPPORTED: c++98, c++03, c++11, c++14 // UNSUPPORTED: libcpp-no-deduction-guides -// XFAIL: clang-6, apple-clang-9.0, apple-clang-9.1 +// XFAIL: clang-6, apple-clang-9.0, apple-clang-9.1, apple-clang-10.0 // clang-6 gives different error messages. // template<class InputIterator, diff --git a/libcxx/test/std/containers/associative/multimap/multimap.cons/deduct.fail.cpp b/libcxx/test/std/containers/associative/multimap/multimap.cons/deduct.fail.cpp index dcbec4cb89d..70fa2522cc1 100644 --- a/libcxx/test/std/containers/associative/multimap/multimap.cons/deduct.fail.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.cons/deduct.fail.cpp @@ -9,7 +9,7 @@ // <map> // UNSUPPORTED: c++98, c++03, c++11, c++14 // UNSUPPORTED: libcpp-no-deduction-guides -// XFAIL: clang-6, apple-clang-9.0, apple-clang-9.1 +// XFAIL: clang-6, apple-clang-9.0, apple-clang-9.1, apple-clang-10.0 // clang-6 gives different error messages. // template<class InputIterator, |