[libcxx-commits] [libcxx] r363014 - XFAIL a couple of CTAD tests on clang-6; it gives different error messages than clang 7/8/9
Marshall Clow via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Jun 10 17:23:50 PDT 2019
Author: marshall
Date: Mon Jun 10 17:23:50 2019
New Revision: 363014
URL: http://llvm.org/viewvc/llvm-project?rev=363014&view=rev
Log:
XFAIL a couple of CTAD tests on clang-6; it gives different error messages than clang 7/8/9
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=363014&r1=363013&r2=363014&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 Mon Jun 10 17:23:50 2019
@@ -9,6 +9,8 @@
// <map>
// UNSUPPORTED: c++98, c++03, c++11, c++14
// UNSUPPORTED: libcpp-no-deduction-guides
+// XFAIL: clang-6
+// clang-6 gives different error messages.
// template<class InputIterator,
// class Compare = less<iter-value-type<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=363014&r1=363013&r2=363014&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 Mon Jun 10 17:23:50 2019
@@ -9,6 +9,8 @@
// <map>
// UNSUPPORTED: c++98, c++03, c++11, c++14
// UNSUPPORTED: libcpp-no-deduction-guides
+// XFAIL: clang-6
+// clang-6 gives different error messages.
// template<class InputIterator,
// class Compare = less<iter-value-type<InputIterator>>,
More information about the libcxx-commits
mailing list