[libcxx-commits] [libcxx] r363197 - [libcxx] XFAIL some CTAD tests on AppleClang 10

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jun 12 13:12:44 PDT 2019


Author: ldionne
Date: Wed Jun 12 13:12:44 2019
New Revision: 363197

URL: http://llvm.org/viewvc/llvm-project?rev=363197&view=rev
Log:
[libcxx] XFAIL some CTAD tests on AppleClang 10

AppleClang 10 doesn't contain some changes that are required for this
test to give the right error message.

Modified:
    libcxx/trunk/test/std/containers/associative/map/map.cons/deduct.fail.cpp
    libcxx/trunk/test/std/containers/associative/multimap/multimap.cons/deduct.fail.cpp

Modified: libcxx/trunk/test/std/containers/associative/map/map.cons/deduct.fail.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/associative/map/map.cons/deduct.fail.cpp?rev=363197&r1=363196&r2=363197&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/associative/map/map.cons/deduct.fail.cpp (original)
+++ libcxx/trunk/test/std/containers/associative/map/map.cons/deduct.fail.cpp Wed Jun 12 13:12:44 2019
@@ -9,7 +9,7 @@
 // <map>
 // 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
+// XFAIL: clang-6, apple-clang-9.0, apple-clang-9.1, apple-clang-10.0
 //  clang-6 gives different error messages.
 
 // template<class InputIterator,

Modified: libcxx/trunk/test/std/containers/associative/multimap/multimap.cons/deduct.fail.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/associative/multimap/multimap.cons/deduct.fail.cpp?rev=363197&r1=363196&r2=363197&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/associative/multimap/multimap.cons/deduct.fail.cpp (original)
+++ libcxx/trunk/test/std/containers/associative/multimap/multimap.cons/deduct.fail.cpp Wed Jun 12 13:12:44 2019
@@ -9,7 +9,7 @@
 // <map>
 // 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
+// XFAIL: clang-6, apple-clang-9.0, apple-clang-9.1, apple-clang-10.0
 //  clang-6 gives different error messages.
 
 // template<class InputIterator,




More information about the libcxx-commits mailing list