[libcxx] r274250 - Temporarily XFAIL the incomplete type tests for GCC while I figure out why adding a static_assert in r274235 broken them

Marshall Clow via cfe-commits cfe-commits at lists.llvm.org
Thu Jun 30 10:49:37 PDT 2016


Author: marshall
Date: Thu Jun 30 12:49:36 2016
New Revision: 274250

URL: http://llvm.org/viewvc/llvm-project?rev=274250&view=rev
Log:
Temporarily XFAIL the incomplete type tests for GCC while I figure out why adding a static_assert in r274235 broken them

Modified:
    libcxx/trunk/test/std/containers/associative/map/incomplete_type.pass.cpp
    libcxx/trunk/test/std/containers/associative/map/map.cons/default_recursive.pass.cpp
    libcxx/trunk/test/std/containers/associative/multimap/incomplete_type.pass.cpp
    libcxx/trunk/test/std/containers/associative/multimap/multimap.cons/default_recursive.pass.cpp
    libcxx/trunk/test/std/containers/unord/unord.map/incomplete_type.pass.cpp
    libcxx/trunk/test/std/containers/unord/unord.multimap/incomplete.pass.cpp

Modified: libcxx/trunk/test/std/containers/associative/map/incomplete_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/associative/map/incomplete_type.pass.cpp?rev=274250&r1=274249&r2=274250&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/associative/map/incomplete_type.pass.cpp (original)
+++ libcxx/trunk/test/std/containers/associative/map/incomplete_type.pass.cpp Thu Jun 30 12:49:36 2016
@@ -12,6 +12,8 @@
 // Check that std::map and it's iterators can be instantiated with an incomplete
 // type.
 
+// XFAIL: gcc
+
 #include <map>
 
 struct A {

Modified: libcxx/trunk/test/std/containers/associative/map/map.cons/default_recursive.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/associative/map/map.cons/default_recursive.pass.cpp?rev=274250&r1=274249&r2=274250&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/associative/map/map.cons/default_recursive.pass.cpp (original)
+++ libcxx/trunk/test/std/containers/associative/map/map.cons/default_recursive.pass.cpp Thu Jun 30 12:49:36 2016
@@ -13,6 +13,8 @@
 
 // map();
 
+// XFAIL: gcc
+
 #include <map>
 
 struct X

Modified: libcxx/trunk/test/std/containers/associative/multimap/incomplete_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/associative/multimap/incomplete_type.pass.cpp?rev=274250&r1=274249&r2=274250&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/associative/multimap/incomplete_type.pass.cpp (original)
+++ libcxx/trunk/test/std/containers/associative/multimap/incomplete_type.pass.cpp Thu Jun 30 12:49:36 2016
@@ -12,6 +12,8 @@
 // Check that std::multimap and it's iterators can be instantiated with an incomplete
 // type.
 
+// XFAIL: gcc
+
 #include <map>
 
 struct A {

Modified: libcxx/trunk/test/std/containers/associative/multimap/multimap.cons/default_recursive.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/associative/multimap/multimap.cons/default_recursive.pass.cpp?rev=274250&r1=274249&r2=274250&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/associative/multimap/multimap.cons/default_recursive.pass.cpp (original)
+++ libcxx/trunk/test/std/containers/associative/multimap/multimap.cons/default_recursive.pass.cpp Thu Jun 30 12:49:36 2016
@@ -13,6 +13,8 @@
 
 // multimap();
 
+// XFAIL: gcc
+
 #include <map>
 
 struct X

Modified: libcxx/trunk/test/std/containers/unord/unord.map/incomplete_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/unord/unord.map/incomplete_type.pass.cpp?rev=274250&r1=274249&r2=274250&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/unord/unord.map/incomplete_type.pass.cpp (original)
+++ libcxx/trunk/test/std/containers/unord/unord.map/incomplete_type.pass.cpp Thu Jun 30 12:49:36 2016
@@ -13,6 +13,8 @@
 // Check that std::unordered_map and it's iterators can be instantiated with an incomplete
 // type.
 
+// XFAIL: gcc
+
 #include <unordered_map>
 
 template <class Tp>

Modified: libcxx/trunk/test/std/containers/unord/unord.multimap/incomplete.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/unord/unord.multimap/incomplete.pass.cpp?rev=274250&r1=274249&r2=274250&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/unord/unord.multimap/incomplete.pass.cpp (original)
+++ libcxx/trunk/test/std/containers/unord/unord.multimap/incomplete.pass.cpp Thu Jun 30 12:49:36 2016
@@ -13,6 +13,8 @@
 // Check that std::unordered_multimap and it's iterators can be instantiated with an incomplete
 // type.
 
+// XFAIL: gcc
+
 #include <unordered_map>
 
 template <class Tp>




More information about the cfe-commits mailing list