diff options
author | Louis Dionne <ldionne@apple.com> | 2019-07-12 17:30:57 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2019-07-12 17:30:57 +0000 |
commit | 189639b1c333295bc64834247dd5a368ef058a46 (patch) | |
tree | 730ba74dd2c7e1e127278f4249228b8e1541b993 /libcxx | |
parent | aaa490346ce79baa0168cdbd24d6adaa5a75df95 (diff) | |
download | llvm-189639b1c333295bc64834247dd5a368ef058a46.zip llvm-189639b1c333295bc64834247dd5a368ef058a46.tar.gz llvm-189639b1c333295bc64834247dd5a368ef058a46.tar.bz2 |
[libc++] Add XFAILs for CTAD tests on older compilers
llvm-svn: 365923
Diffstat (limited to 'libcxx')
-rw-r--r-- | libcxx/test/std/containers/unord/unord.multiset/unord.multiset.cnstr/deduct.fail.cpp | 1 | ||||
-rw-r--r-- | libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/deduct.fail.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libcxx/test/std/containers/unord/unord.multiset/unord.multiset.cnstr/deduct.fail.cpp b/libcxx/test/std/containers/unord/unord.multiset/unord.multiset.cnstr/deduct.fail.cpp index 54c2a4b..ea35925 100644 --- a/libcxx/test/std/containers/unord/unord.multiset/unord.multiset.cnstr/deduct.fail.cpp +++ b/libcxx/test/std/containers/unord/unord.multiset/unord.multiset.cnstr/deduct.fail.cpp @@ -9,6 +9,7 @@ // <unordered_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, apple-clang-10.0 // template<class InputIterator, // class Hash = hash<iter-value-type<InputIterator>>, diff --git a/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/deduct.fail.cpp b/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/deduct.fail.cpp index d4e5337..76fbd20 100644 --- a/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/deduct.fail.cpp +++ b/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/deduct.fail.cpp @@ -9,6 +9,7 @@ // <unordered_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, apple-clang-10.0 // template<class InputIterator, // class Hash = hash<iter-value-type<InputIterator>>, |