[libc++] Add missing UNSUPPORTED for CTAD tests
authorLouis Dionne <ldionne@apple.com>
Tue, 16 Jul 2019 20:41:33 +0000 (20:41 +0000)
committerLouis Dionne <ldionne@apple.com>
Tue, 16 Jul 2019 20:41:33 +0000 (20:41 +0000)
The tests for unordered_set and unordered_multiset were missing UNSUPPORTED
markup for Apple Clang 9.1, which is still being used on some CI bots.

llvm-svn: 366259

libcxx/test/std/containers/unord/unord.multiset/unord.multiset.cnstr/deduct.pass.cpp
libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/deduct.pass.cpp

index 7becaf9..683d201 100644 (file)
@@ -9,6 +9,7 @@
 // <unordered_set>
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: libcpp-no-deduction-guides
+// UNSUPPORTED: apple-clang-9.1
 
 // template<class InputIterator,
 //        class Hash = hash<iter-value-type<InputIterator>>,
index 2079982..95bc082 100644 (file)
@@ -9,6 +9,7 @@
 // <unordered_set>
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: libcpp-no-deduction-guides
+// UNSUPPORTED: apple-clang-9.1
 
 // template<class InputIterator,
 //        class Hash = hash<iter-value-type<InputIterator>>,