[libcxx-commits] [libcxx] r363099 - Mark CTAD fail tests for set/multiset as XFAIL for older compilers that give different error messages
Marshall Clow via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Jun 11 13:35:20 PDT 2019
Author: marshall
Date: Tue Jun 11 13:35:19 2019
New Revision: 363099
URL: http://llvm.org/viewvc/llvm-project?rev=363099&view=rev
Log:
Mark CTAD fail tests for set/multiset as XFAIL for older compilers that give different error messages
Modified:
libcxx/trunk/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp
libcxx/trunk/test/std/containers/associative/set/set.cons/deduct.fail.cpp
Modified: libcxx/trunk/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp?rev=363099&r1=363098&r2=363099&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp (original)
+++ libcxx/trunk/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp Tue Jun 11 13:35:19 2019
@@ -9,6 +9,8 @@
// <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
+// clang-6 gives different error messages.
// template<class InputIterator,
// class Compare = less<iter-value-type<InputIterator>>,
Modified: libcxx/trunk/test/std/containers/associative/set/set.cons/deduct.fail.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/associative/set/set.cons/deduct.fail.cpp?rev=363099&r1=363098&r2=363099&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/associative/set/set.cons/deduct.fail.cpp (original)
+++ libcxx/trunk/test/std/containers/associative/set/set.cons/deduct.fail.cpp Tue Jun 11 13:35:19 2019
@@ -9,6 +9,8 @@
// <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
+// clang-6 gives different error messages.
// template<class InputIterator,
// class Compare = less<iter-value-type<InputIterator>>,
More information about the libcxx-commits
mailing list