diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2019-06-11 20:35:19 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2019-06-11 20:35:19 +0000 |
commit | 903d3db59347dcc808d76703105e3c9a9ce413f7 (patch) | |
tree | 1263a4f88f7ebc22bd12d74c5d37898a65ff69a4 /libcxx/test/std/containers | |
parent | 943faef1fafe2793cfaf9bf7741fe4215d3b0fe7 (diff) | |
download | bcm5719-llvm-903d3db59347dcc808d76703105e3c9a9ce413f7.tar.gz bcm5719-llvm-903d3db59347dcc808d76703105e3c9a9ce413f7.zip |
Mark CTAD fail tests for set/multiset as XFAIL for older compilers that give different error messages
llvm-svn: 363099
Diffstat (limited to 'libcxx/test/std/containers')
-rw-r--r-- | libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp | 2 | ||||
-rw-r--r-- | libcxx/test/std/containers/associative/set/set.cons/deduct.fail.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp b/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp index 3b5b0db3a5b..ff81a2043fc 100644 --- a/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp +++ b/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp @@ -9,6 +9,8 @@ // <set> // 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 +// clang-6 gives different error messages. // template<class InputIterator, // class Compare = less<iter-value-type<InputIterator>>, diff --git a/libcxx/test/std/containers/associative/set/set.cons/deduct.fail.cpp b/libcxx/test/std/containers/associative/set/set.cons/deduct.fail.cpp index 861339b4f1c..37312052485 100644 --- a/libcxx/test/std/containers/associative/set/set.cons/deduct.fail.cpp +++ b/libcxx/test/std/containers/associative/set/set.cons/deduct.fail.cpp @@ -9,6 +9,8 @@ // <set> // 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 +// clang-6 gives different error messages. // template<class InputIterator, // class Compare = less<iter-value-type<InputIterator>>, |