This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[v3] remove xfail atomic_address


This recently started passing everywhere.

tested x86_64/linux

-benjamin
2009-06-05  Benjamin Kosnik  <bkoz@redhat.com>

	* testsuite/29_atomics/atomic_address/cons/aggregate.cc: Remove xfail.

Index: testsuite/29_atomics/atomic_address/cons/aggregate.cc
===================================================================
--- testsuite/29_atomics/atomic_address/cons/aggregate.cc	(revision 148220)
+++ testsuite/29_atomics/atomic_address/cons/aggregate.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-options "-std=gnu++0x" }
-// { dg-do compile { xfail *-*-* } } 
+// { dg-do compile }
 
 // Copyright (C) 2008, 2009 Free Software Foundation, Inc.
 //
@@ -23,6 +23,6 @@
 
 int main()
 {
-  std::atomic_address a = { { NULL } }; // { dg-excess-errors "braces around" }
+  std::atomic_address a = { { NULL } };
   return 0;
 }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]