[libcxx-commits] [libcxx] r363107 - [libcxx] Mark CTAD tests for set and multiset as unsupported on older Apple Clangs

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Tue Jun 11 15:36:20 PDT 2019


Author: ldionne
Date: Tue Jun 11 15:36:20 2019
New Revision: 363107

URL: http://llvm.org/viewvc/llvm-project?rev=363107&view=rev
Log:
[libcxx] Mark CTAD tests for set and multiset as unsupported on older Apple Clangs

Those fail on Green Dragon.

Modified:
    libcxx/trunk/test/std/containers/associative/multiset/multiset.cons/deduct.pass.cpp
    libcxx/trunk/test/std/containers/associative/set/set.cons/deduct.pass.cpp

Modified: libcxx/trunk/test/std/containers/associative/multiset/multiset.cons/deduct.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/associative/multiset/multiset.cons/deduct.pass.cpp?rev=363107&r1=363106&r2=363107&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/associative/multiset/multiset.cons/deduct.pass.cpp (original)
+++ libcxx/trunk/test/std/containers/associative/multiset/multiset.cons/deduct.pass.cpp Tue Jun 11 15:36:20 2019
@@ -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>>,

Modified: libcxx/trunk/test/std/containers/associative/set/set.cons/deduct.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/associative/set/set.cons/deduct.pass.cpp?rev=363107&r1=363106&r2=363107&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/associative/set/set.cons/deduct.pass.cpp (original)
+++ libcxx/trunk/test/std/containers/associative/set/set.cons/deduct.pass.cpp Tue Jun 11 15:36:20 2019
@@ -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>>,




More information about the libcxx-commits mailing list