diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2019-06-11 00:23:50 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2019-06-11 00:23:50 +0000 |
commit | d40807c6bb7a051bcc15d0a7b66b17ff9c50af80 (patch) | |
tree | 193e5975280c05cce2f745ee7a49b3da2f6c1970 /libcxx/test/std/containers | |
parent | 432f48fcd4c0c6c26f44965aab12abbd25b5bfea (diff) | |
download | bcm5719-llvm-d40807c6bb7a051bcc15d0a7b66b17ff9c50af80.tar.gz bcm5719-llvm-d40807c6bb7a051bcc15d0a7b66b17ff9c50af80.zip |
XFAIL a couple of CTAD tests on clang-6; it gives different error messages than clang 7/8/9
llvm-svn: 363014
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, 4 insertions, 0 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 ec59c929078..d7402b5e860 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,6 +9,8 @@ // <map> // UNSUPPORTED: c++98, c++03, c++11, c++14 // UNSUPPORTED: libcpp-no-deduction-guides +// XFAIL: clang-6 +// clang-6 gives different error messages. // template<class InputIterator, // class Compare = less<iter-value-type<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 32b53f653b0..fa6dd929ff1 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,6 +9,8 @@ // <map> // UNSUPPORTED: c++98, c++03, c++11, c++14 // UNSUPPORTED: libcpp-no-deduction-guides +// XFAIL: clang-6 +// clang-6 gives different error messages. // template<class InputIterator, // class Compare = less<iter-value-type<InputIterator>>, |