diff options
author | Louis Dionne <ldionne@apple.com> | 2019-06-11 22:36:20 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2019-06-11 22:36:20 +0000 |
commit | c06943b67d144124ef2a6027bf95c13c5bc18154 (patch) | |
tree | b57bd1eb74d511054e26eeaca3bee1d38ad2554c /libcxx/test/std/containers | |
parent | 40e3bdf8764d4d6053305bd602832912da245cdf (diff) | |
download | bcm5719-llvm-c06943b67d144124ef2a6027bf95c13c5bc18154.tar.gz bcm5719-llvm-c06943b67d144124ef2a6027bf95c13c5bc18154.zip |
[libcxx] Mark CTAD tests for set and multiset as unsupported on older Apple Clangs
Those fail on Green Dragon.
llvm-svn: 363107
Diffstat (limited to 'libcxx/test/std/containers')
-rw-r--r-- | libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.pass.cpp | 1 | ||||
-rw-r--r-- | libcxx/test/std/containers/associative/set/set.cons/deduct.pass.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.pass.cpp b/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.pass.cpp index 22db3df3bcd..01a8ebd7da5 100644 --- a/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.pass.cpp @@ -9,6 +9,7 @@ // <set> // UNSUPPORTED: c++98, c++03, c++11, c++14 // UNSUPPORTED: libcpp-no-deduction-guides +// UNSUPPORTED: apple-clang-9.1 // template<class InputIterator, // class Compare = less<iter-value-type<InputIterator>>, diff --git a/libcxx/test/std/containers/associative/set/set.cons/deduct.pass.cpp b/libcxx/test/std/containers/associative/set/set.cons/deduct.pass.cpp index 019ca61a00a..5e2aa8ba167 100644 --- a/libcxx/test/std/containers/associative/set/set.cons/deduct.pass.cpp +++ b/libcxx/test/std/containers/associative/set/set.cons/deduct.pass.cpp @@ -9,6 +9,7 @@ // <set> // UNSUPPORTED: c++98, c++03, c++11, c++14 // UNSUPPORTED: libcpp-no-deduction-guides +// UNSUPPORTED: apple-clang-9.1 // template<class InputIterator, // class Compare = less<iter-value-type<InputIterator>>, |