public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [v3] Minimally exercise the other alias_decls in <type_traits>
@ 2014-10-15  9:44 Paolo Carlini
  2014-10-15  9:45 ` Jonathan Wakely
  0 siblings, 1 reply; 12+ messages in thread
From: Paolo Carlini @ 2014-10-15  9:44 UTC (permalink / raw)
  To: gcc-patches; +Cc: libstdc++

[-- Attachment #1: Type: text/plain, Size: 67 bytes --]

Hi,

I committed the below.

Thanks,
Paolo.

/////////////////////

[-- Attachment #2: CL_alias_decl --]
[-- Type: text/plain, Size: 921 bytes --]

2014-10-15  Paolo Carlini  <paolo.carlini@oracle.com>

	* testsuite/20_util/add_const/requirements/alias_decl.cc: New.
	* testsuite/20_util/add_cv/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/add_pointer/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/add_volatile/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/aligned_storage/requirements/alias_decl.cc:
	Likewise.
	* testsuite/20_util/aligned_union/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/remove_all_extents/requirements/alias_decl.cc:
	Likewise.
	* testsuite/20_util/remove_const/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/remove_cv/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/remove_extent/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/remove_pointer/requirements/alias_decl.cc:
	Likewise.
	* testsuite/20_util/remove_volatile/requirements/alias_decl.cc:
	Likewise.

[-- Attachment #3: patch_alias_decl --]
[-- Type: text/plain, Size: 18265 bytes --]

Index: testsuite/20_util/add_const/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/add_const/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/add_const/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,33 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename add_const<int>::type,
+	               add_const_t<int>>(),
+               "add_const_t" );
+
+static_assert (is_same<typename add_const<const long>::type,
+                       add_const_t<const long>>(),
+	       "add_const_t" );
Index: testsuite/20_util/add_cv/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/add_cv/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/add_cv/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,33 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename add_cv<int>::type,
+	               add_cv_t<int>>(),
+               "add_cv_t" );
+
+static_assert (is_same<typename add_cv<const volatile long>::type,
+                       add_cv_t<const volatile long>>(),
+	       "add_cv_t" );
Index: testsuite/20_util/add_pointer/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/add_pointer/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/add_pointer/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,33 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename add_pointer<int>::type,
+	               add_pointer_t<int>>(),
+               "add_pointer_t" );
+
+static_assert (is_same<typename add_pointer<long*>::type,
+                       add_pointer_t<long*>>(),
+	       "add_pointer_t" );
Index: testsuite/20_util/add_volatile/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/add_volatile/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/add_volatile/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,33 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename add_volatile<int>::type,
+	               add_volatile_t<int>>(),
+               "add_volatile_t" );
+
+static_assert (is_same<typename add_volatile<volatile long>::type,
+                       add_volatile_t<volatile long>>(),
+	       "add_volatile_t" );
Index: testsuite/20_util/aligned_storage/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/aligned_storage/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/aligned_storage/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,29 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename aligned_storage<4>::type,
+	               aligned_storage_t<4>>(),
+               "aligned_storage_t" );
Index: testsuite/20_util/aligned_union/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/aligned_union/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/aligned_union/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,29 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename aligned_union<0, char, int>::type,
+	               aligned_union_t<0, char, int>>(),
+               "aligned_union_t" );
Index: testsuite/20_util/remove_all_extents/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_all_extents/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/remove_all_extents/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,33 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename remove_all_extents<int>::type,
+	               remove_all_extents_t<int>>(),
+               "remove_all_extents_t" );
+
+static_assert (is_same<typename remove_all_extents<long[3][2]>::type,
+                       remove_all_extents_t<long[3][2]>>(),
+	       "remove_all_extents_t" );
Index: testsuite/20_util/remove_const/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_const/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/remove_const/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,33 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename remove_const<int>::type,
+	               remove_const_t<int>>(),
+               "remove_const_t" );
+
+static_assert (is_same<typename remove_const<const long>::type,
+                       remove_const_t<const long>>(),
+	       "remove_const_t" );
Index: testsuite/20_util/remove_cv/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_cv/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/remove_cv/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,33 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename remove_cv<int>::type,
+	               remove_cv_t<int>>(),
+               "remove_cv_t" );
+
+static_assert (is_same<typename remove_cv<const volatile long>::type,
+                       remove_cv_t<const volatile long>>(),
+	       "remove_cv_t" );
Index: testsuite/20_util/remove_extent/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_extent/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/remove_extent/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,33 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename remove_extent<int>::type,
+	               remove_extent_t<int>>(),
+               "remove_extent_t" );
+
+static_assert (is_same<typename remove_extent<long[3]>::type,
+                       remove_extent_t<long[3]>>(),
+	       "remove_extent_t" );
Index: testsuite/20_util/remove_pointer/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_pointer/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/remove_pointer/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,33 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename remove_pointer<int>::type,
+	               remove_pointer_t<int>>(),
+               "remove_pointer_t" );
+
+static_assert (is_same<typename remove_pointer<long*>::type,
+                       remove_pointer_t<long*>>(),
+	       "remove_pointer_t" );
Index: testsuite/20_util/remove_volatile/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_volatile/requirements/alias_decl.cc	(revision 0)
+++ testsuite/20_util/remove_volatile/requirements/alias_decl.cc	(working copy)
@@ -0,0 +1,33 @@
+// { dg-options "-std=gnu++1y" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+using namespace std;
+
+static_assert (is_same<typename remove_volatile<int>::type,
+	               remove_volatile_t<int>>(),
+               "remove_volatile_t" );
+
+static_assert (is_same<typename remove_volatile<volatile long>::type,
+                       remove_volatile_t<volatile long>>(),
+	       "remove_volatile_t" );

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [v3] Minimally exercise the other alias_decls in <type_traits>
  2014-10-15  9:44 [v3] Minimally exercise the other alias_decls in <type_traits> Paolo Carlini
@ 2014-10-15  9:45 ` Jonathan Wakely
  2014-10-15  9:48   ` Jonathan Wakely
                     ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Jonathan Wakely @ 2014-10-15  9:45 UTC (permalink / raw)
  To: Paolo Carlini; +Cc: gcc-patches, libstdc++

On 15/10/14 11:27 +0200, Paolo Carlini wrote:
>	* testsuite/20_util/add_const/requirements/alias_decl.cc: New.
>	* testsuite/20_util/add_cv/requirements/alias_decl.cc: Likewise.
>	* testsuite/20_util/add_pointer/requirements/alias_decl.cc: Likewise.
>	* testsuite/20_util/add_volatile/requirements/alias_decl.cc: Likewise.
>	* testsuite/20_util/aligned_storage/requirements/alias_decl.cc:
>	Likewise.
>	* testsuite/20_util/aligned_union/requirements/alias_decl.cc: Likewise.
>	* testsuite/20_util/remove_all_extents/requirements/alias_decl.cc:
>	Likewise.
>	* testsuite/20_util/remove_const/requirements/alias_decl.cc: Likewise.
>	* testsuite/20_util/remove_cv/requirements/alias_decl.cc: Likewise.
>	* testsuite/20_util/remove_extent/requirements/alias_decl.cc: Likewise.
>	* testsuite/20_util/remove_pointer/requirements/alias_decl.cc:
>	Likewise.
>	* testsuite/20_util/remove_volatile/requirements/alias_decl.cc:
>	Likewise.

Nice.

>Index: testsuite/20_util/add_const/requirements/alias_decl.cc
>===================================================================
>--- testsuite/20_util/add_const/requirements/alias_decl.cc	(revision 0)
>+++ testsuite/20_util/add_const/requirements/alias_decl.cc	(working copy)
>@@ -0,0 +1,33 @@
>+// { dg-options "-std=gnu++1y" }

We can use -std=gnu++14 and probably should prefer it.

We might also want to consider a global s/gnu++0x/gnu++11/ some day.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [v3] Minimally exercise the other alias_decls in <type_traits>
  2014-10-15  9:45 ` Jonathan Wakely
@ 2014-10-15  9:48   ` Jonathan Wakely
  2014-10-15 17:48     ` Mike Stump
  2014-10-15  9:50   ` Paolo Carlini
  2014-10-15 18:29   ` Paolo Carlini
  2 siblings, 1 reply; 12+ messages in thread
From: Jonathan Wakely @ 2014-10-15  9:48 UTC (permalink / raw)
  To: Paolo Carlini; +Cc: gcc-patches, libstdc++

On 15/10/14 10:44 +0100, Jonathan Wakely wrote:
>We might also want to consider a global s/gnu++0x/gnu++11/ some day.

One reason for doing that replacement is that I keep copying existing
tests and then having to change it, and I'm lazy!

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [v3] Minimally exercise the other alias_decls in <type_traits>
  2014-10-15  9:45 ` Jonathan Wakely
  2014-10-15  9:48   ` Jonathan Wakely
@ 2014-10-15  9:50   ` Paolo Carlini
  2014-10-15 10:51     ` Paolo Carlini
  2014-10-15 18:29   ` Paolo Carlini
  2 siblings, 1 reply; 12+ messages in thread
From: Paolo Carlini @ 2014-10-15  9:50 UTC (permalink / raw)
  To: Jonathan Wakely; +Cc: gcc-patches, libstdc++

Hi,

On 10/15/2014 11:44 AM, Jonathan Wakely wrote:
> Index: testsuite/20_util/add_const/requirements/alias_decl.cc
>> ===================================================================
>> --- testsuite/20_util/add_const/requirements/alias_decl.cc (revision 0)
>> +++ testsuite/20_util/add_const/requirements/alias_decl.cc (working 
>> copy)
>> @@ -0,0 +1,33 @@
>> +// { dg-options "-std=gnu++1y" }
>
> We can use -std=gnu++14 and probably should prefer it.
I agree, the other day I asked myself why we were using 1y in those 
tests, and overwhelmed today I preferred to just remain consistent for 
the time being.
> We might also want to consider a global s/gnu++0x/gnu++11/ some day.
And s/gnu++1y/gnu++14 of course ;)

Paolo.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [v3] Minimally exercise the other alias_decls in <type_traits>
  2014-10-15  9:50   ` Paolo Carlini
@ 2014-10-15 10:51     ` Paolo Carlini
  2014-10-15 15:47       ` Paolo Carlini
  2014-10-15 17:35       ` Mike Stump
  0 siblings, 2 replies; 12+ messages in thread
From: Paolo Carlini @ 2014-10-15 10:51 UTC (permalink / raw)
  To: Jonathan Wakely; +Cc: gcc-patches, libstdc++

[-- Attachment #1: Type: text/plain, Size: 235 bytes --]

Hi again,

On 10/15/2014 11:50 AM, Paolo Carlini wrote:
>> We might also want to consider a global s/gnu++0x/gnu++11/ some day.
> And s/gnu++1y/gnu++14 of course ;)
I'm going to commit the below.

Thanks,
Paolo.

/////////////////////

[-- Attachment #2: CL_14 --]
[-- Type: text/plain, Size: 12756 bytes --]

2014-10-15  Paolo Carlini  <paolo.carlini@oracle.com>

	* testsuite/20_util/add_const/requirements/alias_decl.cc: Prefer
	-std=gnu++14.
	* testsuite/20_util/add_cv/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/add_lvalue_reference/requirements/alias_decl.cc:
	Likewise.
	* testsuite/20_util/add_pointer/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/add_rvalue_reference/requirements/alias_decl.cc:
	Likewise.
	* testsuite/20_util/add_volatile/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/aligned_storage/requirements/alias_decl.cc:
	Likewise.
	* testsuite/20_util/aligned_union/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/common_type/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/conditional/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/decay/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/duration/literals/61166.cc: Likewise.
	* testsuite/20_util/duration/literals/ns_detail.cc: Likewise.
	* testsuite/20_util/duration/literals/range.cc: Likewise.
	* testsuite/20_util/duration/literals/types.cc: Likewise.
	* testsuite/20_util/duration/literals/values.cc: Likewise.
	* testsuite/20_util/enable_if/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/exchange/1.cc: Likewise.
	* testsuite/20_util/function_objects/comparisons_void.cc: Likewise.
	* testsuite/20_util/integer_sequence/intseq.cc: Likewise.
	* testsuite/20_util/integer_sequence/requirements/typedefs.cc:
	Likewise.
	* testsuite/20_util/integral_constant/call_operator.cc: Likewise.
	* testsuite/20_util/make_signed/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/make_unsigned/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/pair/astuple/constexpr_get_by_type.cc: Likewise.
	* testsuite/20_util/pair/astuple/get_by_type.cc: Likewise.
	* testsuite/20_util/pair/astuple/get_by_type_neg.cc: Likewise.
	* testsuite/20_util/pair/astuple/get_neg.cc: Likewise.
	* testsuite/20_util/remove_all_extents/requirements/alias_decl.cc:
	Likewise.
	* testsuite/20_util/remove_const/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/remove_cv/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/remove_extent/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/remove_pointer/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/remove_reference/requirements/alias_decl.cc:
	Likewise.
	* testsuite/20_util/remove_volatile/requirements/alias_decl.cc:
	Likewise.
	* testsuite/20_util/result_of/requirements/alias_decl.cc: Likewise.
	* testsuite/20_util/tuple/element_access/constexpr_get_by_type.cc:
	Likewise.
	* testsuite/20_util/tuple/element_access/get2_by_type.cc: Likewise.
	* testsuite/20_util/tuple/element_access/get_by_type.cc: Likewise.
	* testsuite/20_util/underlying_type/requirements/alias_decl.cc:
	Likewise.
	* testsuite/20_util/unique_ptr/creation/array.cc: Likewise.
	* testsuite/20_util/unique_ptr/creation/array_neg.cc: Likewise.
	* testsuite/20_util/unique_ptr/creation/single.cc: Likewise.
	* testsuite/21_strings/basic_string/literals/types.cc: Likewise.
	* testsuite/21_strings/basic_string/literals/values.cc: Likewise.
	* testsuite/25_algorithms/equal/2.cc: Likewise.
	* testsuite/25_algorithms/equal/check_type2.cc: Likewise.
	* testsuite/25_algorithms/is_permutation/2.cc: Likewise.
	* testsuite/25_algorithms/is_permutation/check_type2.cc: Likewise.
	* testsuite/25_algorithms/is_permutation/vectorbool.cc: Likewise.
	* testsuite/25_algorithms/mismatch/2.cc: Likewise.
	* testsuite/25_algorithms/mismatch/check_type2.cc: Likewise.
	* testsuite/26_numerics/complex/literals/values.cc: Likewise.
	* testsuite/27_io/manipulators/standard/char/quoted.cc: Likewise.
	* testsuite/27_io/manipulators/standard/wchar_t/quoted.cc: Likewise.
	* testsuite/30_threads/shared_lock/cons/1.cc: Likewise.
	* testsuite/30_threads/shared_lock/cons/2.cc: Likewise.
	* testsuite/30_threads/shared_lock/cons/3.cc: Likewise.
	* testsuite/30_threads/shared_lock/cons/4.cc: Likewise.
	* testsuite/30_threads/shared_lock/cons/5.cc: Likewise.
	* testsuite/30_threads/shared_lock/cons/6.cc: Likewise.
	* testsuite/30_threads/shared_lock/locking/1.cc: Likewise.
	* testsuite/30_threads/shared_lock/locking/2.cc: Likewise.
	* testsuite/30_threads/shared_lock/locking/3.cc: Likewise.
	* testsuite/30_threads/shared_lock/locking/4.cc: Likewise.
	* testsuite/30_threads/shared_lock/modifiers/1.cc: Likewise.
	* testsuite/30_threads/shared_lock/modifiers/2.cc: Likewise.
	* testsuite/30_threads/shared_lock/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/30_threads/shared_lock/requirements/typedefs.cc: Likewise.
	* testsuite/30_threads/shared_timed_mutex/cons/1.cc: Likewise.
	* testsuite/30_threads/shared_timed_mutex/cons/assign_neg.cc: Likewise.
	* testsuite/30_threads/shared_timed_mutex/cons/copy_neg.cc: Likewise.
	* testsuite/30_threads/shared_timed_mutex/requirements/
	standard_layout.cc: Likewise.
	* testsuite/30_threads/shared_timed_mutex/try_lock/1.cc: Likewise.
	* testsuite/30_threads/shared_timed_mutex/try_lock/2.cc: Likewise.
	* testsuite/experimental/optional/assignment/1.cc: Likewise.
	* testsuite/experimental/optional/assignment/2.cc: Likewise.
	* testsuite/experimental/optional/assignment/3.cc: Likewise.
	* testsuite/experimental/optional/assignment/4.cc: Likewise.
	* testsuite/experimental/optional/assignment/5.cc: Likewise.
	* testsuite/experimental/optional/assignment/6.cc: Likewise.
	* testsuite/experimental/optional/cons/copy.cc: Likewise.
	* testsuite/experimental/optional/cons/default.cc: Likewise.
	* testsuite/experimental/optional/cons/move.cc: Likewise.
	* testsuite/experimental/optional/cons/value.cc: Likewise.
	* testsuite/experimental/optional/constexpr/cons/default.cc: Likewise.
	* testsuite/experimental/optional/constexpr/cons/value.cc: Likewise.
	* testsuite/experimental/optional/constexpr/in_place.cc: Likewise.
	* testsuite/experimental/optional/constexpr/make_optional.cc: Likewise.
	* testsuite/experimental/optional/constexpr/nullopt.cc: Likewise.
	* testsuite/experimental/optional/constexpr/observers/1.cc: Likewise.
	* testsuite/experimental/optional/constexpr/observers/2.cc: Likewise.
	* testsuite/experimental/optional/constexpr/observers/3.cc: Likewise.
	* testsuite/experimental/optional/constexpr/observers/4.cc: Likewise.
	* testsuite/experimental/optional/constexpr/observers/5.cc: Likewise.
	* testsuite/experimental/optional/constexpr/relops/1.cc: Likewise.
	* testsuite/experimental/optional/constexpr/relops/2.cc: Likewise.
	* testsuite/experimental/optional/constexpr/relops/3.cc: Likewise.
	* testsuite/experimental/optional/constexpr/relops/4.cc: Likewise.
	* testsuite/experimental/optional/constexpr/relops/5.cc: Likewise.
	* testsuite/experimental/optional/constexpr/relops/6.cc: Likewise.
	* testsuite/experimental/optional/in_place.cc: Likewise.
	* testsuite/experimental/optional/make_optional.cc: Likewise.
	* testsuite/experimental/optional/nullopt.cc: Likewise.
	* testsuite/experimental/optional/observers/1.cc: Likewise.
	* testsuite/experimental/optional/observers/2.cc: Likewise.
	* testsuite/experimental/optional/observers/3.cc: Likewise.
	* testsuite/experimental/optional/observers/4.cc: Likewise.
	* testsuite/experimental/optional/observers/5.cc: Likewise.
	* testsuite/experimental/optional/relops/1.cc: Likewise.
	* testsuite/experimental/optional/relops/2.cc: Likewise.
	* testsuite/experimental/optional/relops/3.cc: Likewise.
	* testsuite/experimental/optional/relops/4.cc: Likewise.
	* testsuite/experimental/optional/relops/5.cc: Likewise.
	* testsuite/experimental/optional/relops/6.cc: Likewise.
	* testsuite/experimental/optional/requirements.cc: Likewise.
	* testsuite/experimental/optional/swap/1.cc: Likewise.
	* testsuite/experimental/string_view/capacity/1.cc: Likewise.
	* testsuite/experimental/string_view/cons/char/1.cc: Likewise.
	* testsuite/experimental/string_view/cons/char/2.cc: Likewise.
	* testsuite/experimental/string_view/cons/char/3.cc: Likewise.
	* testsuite/experimental/string_view/cons/wchar_t/1.cc: Likewise.
	* testsuite/experimental/string_view/cons/wchar_t/2.cc: Likewise.
	* testsuite/experimental/string_view/cons/wchar_t/3.cc: Likewise.
	* testsuite/experimental/string_view/element_access/char/1.cc: Likewise.
	* testsuite/experimental/string_view/element_access/char/2.cc: Likewise.
	* testsuite/experimental/string_view/element_access/char/empty.cc: 
	Likewise.
	* testsuite/experimental/string_view/element_access/char/
	front_back.cc: Likewise.
	* testsuite/experimental/string_view/element_access/wchar_t/1.cc:
	Likewise.
	* testsuite/experimental/string_view/element_access/wchar_t/2.cc:
	Likewise.
	* testsuite/experimental/string_view/element_access/wchar_t/empty.cc:
	Likewise.
	* testsuite/experimental/string_view/element_access/wchar_t/
	front_back.cc: Likewise.
	* testsuite/experimental/string_view/include.cc: Likewise.
	* testsuite/experimental/string_view/inserters/char/1.cc: Likewise.
	* testsuite/experimental/string_view/inserters/char/2.cc: Likewise.
	* testsuite/experimental/string_view/inserters/char/3.cc: Likewise.
	* testsuite/experimental/string_view/inserters/pod/10081-out.cc:
	Likewise.
	* testsuite/experimental/string_view/inserters/wchar_t/1.cc: Likewise.
	* testsuite/experimental/string_view/inserters/wchar_t/2.cc: Likewise.
	* testsuite/experimental/string_view/inserters/wchar_t/3.cc: Likewise.
	* testsuite/experimental/string_view/literals/types.cc: Likewise.
	* testsuite/experimental/string_view/literals/values.cc: Likewise.
	* testsuite/experimental/string_view/modifiers/remove_prefix/char/
	1.cc: Likewise.
	* testsuite/experimental/string_view/modifiers/remove_prefix/
	wchar_t/1.cc: Likewise.
	* testsuite/experimental/string_view/modifiers/remove_suffix/
	char/1.cc: Likewise.
	* testsuite/experimental/string_view/modifiers/remove_suffix/
	wchar_t/1.cc: Likewise.
	* testsuite/experimental/string_view/operations/compare/char/1.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/compare/char/13650.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/compare/wchar_t/1.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/compare/wchar_t/
	13650.cc: Likewise.
	* testsuite/experimental/string_view/operations/copy/char/1.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/copy/wchar_t/1.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/data/char/1.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/data/wchar_t/1.cc: 
	Likewise.
	* testsuite/experimental/string_view/operations/find/char/1.cc: 
	Likewise.
	* testsuite/experimental/string_view/operations/find/char/2.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/find/char/3.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/find/char/4.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/find/wchar_t/1.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/find/wchar_t/2.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/find/wchar_t/3.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/find/wchar_t/4.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/rfind/char/1.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/rfind/char/2.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/rfind/char/3.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/rfind/wchar_t/1.cc:
	Likewise.
	* testsuite/experimental/string_view/operations/rfind/wchar_t/2.cc: 
	Likewise.
	* testsuite/experimental/string_view/operations/rfind/wchar_t/3.cc: 
	Likewise.
	* testsuite/experimental/string_view/operations/substr/char/1.cc: 
	Likewise.
	* testsuite/experimental/string_view/operations/substr/wchar_t/1.cc: 
	Likewise.
	* testsuite/experimental/string_view/operations/to_string/1.cc: 
	Likewise.
	* testsuite/experimental/string_view/operators/char/2.cc: Likewise.
	* testsuite/experimental/string_view/operators/wchar_t/2.cc: Likewise.
	* testsuite/experimental/string_view/range_access/char/1.cc: Likewise.
	* testsuite/experimental/string_view/range_access/wchar_t/1.cc: 
	Likewise.
	* testsuite/experimental/string_view/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/experimental/string_view/requirements/
	explicit_instantiation/char/1.cc: Likewise.
	* testsuite/experimental/string_view/requirements/
	explicit_instantiation/char16_t/1.cc: Likewise.
	* testsuite/experimental/string_view/requirements/
	explicit_instantiation/char32_t/1.cc: Likewise.
	* testsuite/experimental/string_view/requirements/
	explicit_instantiation/wchar_t/1.cc: Likewise.
	* testsuite/experimental/string_view/requirements/typedefs.cc: Likewise.
	* testsuite/experimental/string_view/types/1.cc: Likewise.

[-- Attachment #3: patch_14 --]
[-- Type: text/plain, Size: 90182 bytes --]

Index: testsuite/20_util/add_const/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/add_const/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/add_const/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/add_cv/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/add_cv/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/add_cv/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/add_lvalue_reference/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/add_lvalue_reference/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/add_lvalue_reference/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/add_pointer/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/add_pointer/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/add_pointer/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/add_rvalue_reference/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/add_rvalue_reference/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/add_rvalue_reference/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/add_volatile/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/add_volatile/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/add_volatile/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/aligned_storage/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/aligned_storage/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/aligned_storage/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/aligned_union/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/aligned_union/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/aligned_union/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/common_type/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/common_type/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/common_type/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 //
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/conditional/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/conditional/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/conditional/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/decay/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/decay/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/decay/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/duration/literals/61166.cc
===================================================================
--- testsuite/20_util/duration/literals/61166.cc	(revision 216246)
+++ testsuite/20_util/duration/literals/61166.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/duration/literals/ns_detail.cc
===================================================================
--- testsuite/20_util/duration/literals/ns_detail.cc	(revision 216246)
+++ testsuite/20_util/duration/literals/ns_detail.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Test error: reference to '__detail' is ambiguous
Index: testsuite/20_util/duration/literals/range.cc
===================================================================
--- testsuite/20_util/duration/literals/range.cc	(revision 216246)
+++ testsuite/20_util/duration/literals/range.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/duration/literals/types.cc
===================================================================
--- testsuite/20_util/duration/literals/types.cc	(revision 216246)
+++ testsuite/20_util/duration/literals/types.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/duration/literals/values.cc
===================================================================
--- testsuite/20_util/duration/literals/values.cc	(revision 216246)
+++ testsuite/20_util/duration/literals/values.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/enable_if/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/enable_if/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/enable_if/requirements/alias_decl.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/exchange/1.cc
===================================================================
--- testsuite/20_util/exchange/1.cc	(revision 216246)
+++ testsuite/20_util/exchange/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/function_objects/comparisons_void.cc
===================================================================
--- testsuite/20_util/function_objects/comparisons_void.cc	(revision 216246)
+++ testsuite/20_util/function_objects/comparisons_void.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options " -std=gnu++1y " }
+// { dg-options " -std=gnu++14 " }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/integer_sequence/intseq.cc
===================================================================
--- testsuite/20_util/integer_sequence/intseq.cc	(revision 216246)
+++ testsuite/20_util/integer_sequence/intseq.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 //
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/integer_sequence/requirements/typedefs.cc
===================================================================
--- testsuite/20_util/integer_sequence/requirements/typedefs.cc	(revision 216246)
+++ testsuite/20_util/integer_sequence/requirements/typedefs.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 //
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/integral_constant/call_operator.cc
===================================================================
--- testsuite/20_util/integral_constant/call_operator.cc	(revision 216246)
+++ testsuite/20_util/integral_constant/call_operator.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 //
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/make_signed/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/make_signed/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/make_signed/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/make_unsigned/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/make_unsigned/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/make_unsigned/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/pair/astuple/constexpr_get_by_type.cc
===================================================================
--- testsuite/20_util/pair/astuple/constexpr_get_by_type.cc	(revision 216246)
+++ testsuite/20_util/pair/astuple/constexpr_get_by_type.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/pair/astuple/get_by_type.cc
===================================================================
--- testsuite/20_util/pair/astuple/get_by_type.cc	(revision 216246)
+++ testsuite/20_util/pair/astuple/get_by_type.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/pair/astuple/get_by_type_neg.cc
===================================================================
--- testsuite/20_util/pair/astuple/get_by_type_neg.cc	(revision 216246)
+++ testsuite/20_util/pair/astuple/get_by_type_neg.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/pair/astuple/get_neg.cc
===================================================================
--- testsuite/20_util/pair/astuple/get_neg.cc	(revision 216246)
+++ testsuite/20_util/pair/astuple/get_neg.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/remove_all_extents/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_all_extents/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/remove_all_extents/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/remove_const/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_const/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/remove_const/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/remove_cv/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_cv/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/remove_cv/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/remove_extent/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_extent/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/remove_extent/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/remove_pointer/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_pointer/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/remove_pointer/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/remove_reference/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_reference/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/remove_reference/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/remove_volatile/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/remove_volatile/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/remove_volatile/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
Index: testsuite/20_util/result_of/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/result_of/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/result_of/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/tuple/element_access/constexpr_get_by_type.cc
===================================================================
--- testsuite/20_util/tuple/element_access/constexpr_get_by_type.cc	(revision 216246)
+++ testsuite/20_util/tuple/element_access/constexpr_get_by_type.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/tuple/element_access/get2_by_type.cc
===================================================================
--- testsuite/20_util/tuple/element_access/get2_by_type.cc	(revision 216246)
+++ testsuite/20_util/tuple/element_access/get2_by_type.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/tuple/element_access/get_by_type.cc
===================================================================
--- testsuite/20_util/tuple/element_access/get_by_type.cc	(revision 216246)
+++ testsuite/20_util/tuple/element_access/get_by_type.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/underlying_type/requirements/alias_decl.cc
===================================================================
--- testsuite/20_util/underlying_type/requirements/alias_decl.cc	(revision 216246)
+++ testsuite/20_util/underlying_type/requirements/alias_decl.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 //
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/unique_ptr/creation/array.cc
===================================================================
--- testsuite/20_util/unique_ptr/creation/array.cc	(revision 216246)
+++ testsuite/20_util/unique_ptr/creation/array.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/20_util/unique_ptr/creation/array_neg.cc
===================================================================
--- testsuite/20_util/unique_ptr/creation/array_neg.cc	(revision 216246)
+++ testsuite/20_util/unique_ptr/creation/array_neg.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/unique_ptr/creation/single.cc
===================================================================
--- testsuite/20_util/unique_ptr/creation/single.cc	(revision 216246)
+++ testsuite/20_util/unique_ptr/creation/single.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/21_strings/basic_string/literals/types.cc
===================================================================
--- testsuite/21_strings/basic_string/literals/types.cc	(revision 216246)
+++ testsuite/21_strings/basic_string/literals/types.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/21_strings/basic_string/literals/values.cc
===================================================================
--- testsuite/21_strings/basic_string/literals/values.cc	(revision 216246)
+++ testsuite/21_strings/basic_string/literals/values.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/25_algorithms/equal/2.cc
===================================================================
--- testsuite/25_algorithms/equal/2.cc	(revision 216246)
+++ testsuite/25_algorithms/equal/2.cc	(working copy)
@@ -17,7 +17,7 @@
 
 // 25.2.11 [alg.equal]
 
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 #include <algorithm>
 #include <testsuite_hooks.h>
Index: testsuite/25_algorithms/equal/check_type2.cc
===================================================================
--- testsuite/25_algorithms/equal/check_type2.cc	(revision 216246)
+++ testsuite/25_algorithms/equal/check_type2.cc	(working copy)
@@ -18,7 +18,7 @@
 // 25.2.11 [alg.equal]
 
 // { dg-do compile }
-// { dg-options " -std=gnu++1y " }
+// { dg-options " -std=gnu++14 " }
 
 #include <algorithm>
 #include <testsuite_iterators.h>
Index: testsuite/25_algorithms/is_permutation/2.cc
===================================================================
--- testsuite/25_algorithms/is_permutation/2.cc	(revision 216246)
+++ testsuite/25_algorithms/is_permutation/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/25_algorithms/is_permutation/check_type2.cc
===================================================================
--- testsuite/25_algorithms/is_permutation/check_type2.cc	(revision 216246)
+++ testsuite/25_algorithms/is_permutation/check_type2.cc	(working copy)
@@ -18,7 +18,7 @@
 // 25.2.12 [alg.is_permutation] Is permutation
 
 // { dg-do compile }
-// { dg-options " -std=gnu++1y " }
+// { dg-options " -std=gnu++14 " }
 
 #include <algorithm>
 #include <testsuite_iterators.h>
Index: testsuite/25_algorithms/is_permutation/vectorbool.cc
===================================================================
--- testsuite/25_algorithms/is_permutation/vectorbool.cc	(revision 216246)
+++ testsuite/25_algorithms/is_permutation/vectorbool.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/25_algorithms/mismatch/2.cc
===================================================================
--- testsuite/25_algorithms/mismatch/2.cc	(revision 216246)
+++ testsuite/25_algorithms/mismatch/2.cc	(working copy)
@@ -17,7 +17,7 @@
 
 // 25.2.10 [mismatch]
 
-// { dg-options " -std=gnu++1y " }
+// { dg-options " -std=gnu++14 " }
 
 #include <algorithm>
 #include <testsuite_hooks.h>
Index: testsuite/25_algorithms/mismatch/check_type2.cc
===================================================================
--- testsuite/25_algorithms/mismatch/check_type2.cc	(revision 216246)
+++ testsuite/25_algorithms/mismatch/check_type2.cc	(working copy)
@@ -17,7 +17,7 @@
 
 // 25.2.10 [mismatch]
 
-// { dg-options " -std=gnu++1y " }
+// { dg-options " -std=gnu++14 " }
 // { dg-do compile }
 
 #include <algorithm>
Index: testsuite/26_numerics/complex/literals/values.cc
===================================================================
--- testsuite/26_numerics/complex/literals/values.cc	(revision 216246)
+++ testsuite/26_numerics/complex/literals/values.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/27_io/manipulators/standard/char/quoted.cc
===================================================================
--- testsuite/27_io/manipulators/standard/char/quoted.cc	(revision 216246)
+++ testsuite/27_io/manipulators/standard/char/quoted.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/27_io/manipulators/standard/wchar_t/quoted.cc
===================================================================
--- testsuite/27_io/manipulators/standard/wchar_t/quoted.cc	(revision 216246)
+++ testsuite/27_io/manipulators/standard/wchar_t/quoted.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/30_threads/shared_lock/cons/1.cc
===================================================================
--- testsuite/30_threads/shared_lock/cons/1.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/cons/1.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_lock/cons/2.cc
===================================================================
--- testsuite/30_threads/shared_lock/cons/2.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/cons/2.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_lock/cons/3.cc
===================================================================
--- testsuite/30_threads/shared_lock/cons/3.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/cons/3.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_lock/cons/4.cc
===================================================================
--- testsuite/30_threads/shared_lock/cons/4.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/cons/4.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_lock/cons/5.cc
===================================================================
--- testsuite/30_threads/shared_lock/cons/5.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/cons/5.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads-timed "" }
 
Index: testsuite/30_threads/shared_lock/cons/6.cc
===================================================================
--- testsuite/30_threads/shared_lock/cons/6.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/cons/6.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads-timed "" }
 
Index: testsuite/30_threads/shared_lock/locking/1.cc
===================================================================
--- testsuite/30_threads/shared_lock/locking/1.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/locking/1.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_lock/locking/2.cc
===================================================================
--- testsuite/30_threads/shared_lock/locking/2.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/locking/2.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_lock/locking/3.cc
===================================================================
--- testsuite/30_threads/shared_lock/locking/3.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/locking/3.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads-timed "" }
 
Index: testsuite/30_threads/shared_lock/locking/4.cc
===================================================================
--- testsuite/30_threads/shared_lock/locking/4.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/locking/4.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads-timed "" }
 
Index: testsuite/30_threads/shared_lock/modifiers/1.cc
===================================================================
--- testsuite/30_threads/shared_lock/modifiers/1.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/modifiers/1.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_lock/modifiers/2.cc
===================================================================
--- testsuite/30_threads/shared_lock/modifiers/2.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/modifiers/2.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_lock/requirements/explicit_instantiation.cc
===================================================================
--- testsuite/30_threads/shared_lock/requirements/explicit_instantiation.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/requirements/explicit_instantiation.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_lock/requirements/typedefs.cc
===================================================================
--- testsuite/30_threads/shared_lock/requirements/typedefs.cc	(revision 216246)
+++ testsuite/30_threads/shared_lock/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_timed_mutex/cons/1.cc
===================================================================
--- testsuite/30_threads/shared_timed_mutex/cons/1.cc	(revision 216246)
+++ testsuite/30_threads/shared_timed_mutex/cons/1.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_timed_mutex/cons/assign_neg.cc
===================================================================
--- testsuite/30_threads/shared_timed_mutex/cons/assign_neg.cc	(revision 216246)
+++ testsuite/30_threads/shared_timed_mutex/cons/assign_neg.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_timed_mutex/cons/copy_neg.cc
===================================================================
--- testsuite/30_threads/shared_timed_mutex/cons/copy_neg.cc	(revision 216246)
+++ testsuite/30_threads/shared_timed_mutex/cons/copy_neg.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_timed_mutex/requirements/standard_layout.cc
===================================================================
--- testsuite/30_threads/shared_timed_mutex/requirements/standard_layout.cc	(revision 216246)
+++ testsuite/30_threads/shared_timed_mutex/requirements/standard_layout.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_timed_mutex/try_lock/1.cc
===================================================================
--- testsuite/30_threads/shared_timed_mutex/try_lock/1.cc	(revision 216246)
+++ testsuite/30_threads/shared_timed_mutex/try_lock/1.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/30_threads/shared_timed_mutex/try_lock/2.cc
===================================================================
--- testsuite/30_threads/shared_timed_mutex/try_lock/2.cc	(revision 216246)
+++ testsuite/30_threads/shared_timed_mutex/try_lock/2.cc	(working copy)
@@ -1,7 +1,7 @@
 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
-// { dg-options " -std=gnu++1y -pthreads" { target *-*-solaris* } }
-// { dg-options " -std=gnu++1y " { target *-*-cygwin *-*-darwin* } }
+// { dg-options " -std=gnu++14 -pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
+// { dg-options " -std=gnu++14 -pthreads" { target *-*-solaris* } }
+// { dg-options " -std=gnu++14 " { target *-*-cygwin *-*-darwin* } }
 // { dg-require-cstdint "" }
 // { dg-require-gthreads "" }
 
Index: testsuite/experimental/optional/assignment/1.cc
===================================================================
--- testsuite/experimental/optional/assignment/1.cc	(revision 216246)
+++ testsuite/experimental/optional/assignment/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/assignment/2.cc
===================================================================
--- testsuite/experimental/optional/assignment/2.cc	(revision 216246)
+++ testsuite/experimental/optional/assignment/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/assignment/3.cc
===================================================================
--- testsuite/experimental/optional/assignment/3.cc	(revision 216246)
+++ testsuite/experimental/optional/assignment/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/assignment/4.cc
===================================================================
--- testsuite/experimental/optional/assignment/4.cc	(revision 216246)
+++ testsuite/experimental/optional/assignment/4.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/assignment/5.cc
===================================================================
--- testsuite/experimental/optional/assignment/5.cc	(revision 216246)
+++ testsuite/experimental/optional/assignment/5.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/assignment/6.cc
===================================================================
--- testsuite/experimental/optional/assignment/6.cc	(revision 216246)
+++ testsuite/experimental/optional/assignment/6.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/cons/copy.cc
===================================================================
--- testsuite/experimental/optional/cons/copy.cc	(revision 216246)
+++ testsuite/experimental/optional/cons/copy.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/cons/default.cc
===================================================================
--- testsuite/experimental/optional/cons/default.cc	(revision 216246)
+++ testsuite/experimental/optional/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/cons/move.cc
===================================================================
--- testsuite/experimental/optional/cons/move.cc	(revision 216246)
+++ testsuite/experimental/optional/cons/move.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/cons/value.cc
===================================================================
--- testsuite/experimental/optional/cons/value.cc	(revision 216246)
+++ testsuite/experimental/optional/cons/value.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/cons/default.cc
===================================================================
--- testsuite/experimental/optional/constexpr/cons/default.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/cons/value.cc
===================================================================
--- testsuite/experimental/optional/constexpr/cons/value.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/cons/value.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/in_place.cc
===================================================================
--- testsuite/experimental/optional/constexpr/in_place.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/in_place.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/make_optional.cc
===================================================================
--- testsuite/experimental/optional/constexpr/make_optional.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/make_optional.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // XFAIL pending resolution of PR libstdc++/58777
 // { dg-do compile { xfail *-*-* } }
 // { dg-excess-errors "" }
Index: testsuite/experimental/optional/constexpr/nullopt.cc
===================================================================
--- testsuite/experimental/optional/constexpr/nullopt.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/nullopt.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/observers/1.cc
===================================================================
--- testsuite/experimental/optional/constexpr/observers/1.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/observers/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/observers/2.cc
===================================================================
--- testsuite/experimental/optional/constexpr/observers/2.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/observers/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // XFAIL pending resolution of PR libstdc++/58777
 // { dg-do compile { xfail *-*-* } }
 // { dg-excess-errors "" }
Index: testsuite/experimental/optional/constexpr/observers/3.cc
===================================================================
--- testsuite/experimental/optional/constexpr/observers/3.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/observers/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // XFAIL pending resolution of PR libstdc++/58777
 // { dg-do compile { xfail *-*-* } }
 // { dg-excess-errors "" }
Index: testsuite/experimental/optional/constexpr/observers/4.cc
===================================================================
--- testsuite/experimental/optional/constexpr/observers/4.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/observers/4.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/observers/5.cc
===================================================================
--- testsuite/experimental/optional/constexpr/observers/5.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/observers/5.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/relops/1.cc
===================================================================
--- testsuite/experimental/optional/constexpr/relops/1.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/relops/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/relops/2.cc
===================================================================
--- testsuite/experimental/optional/constexpr/relops/2.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/relops/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/relops/3.cc
===================================================================
--- testsuite/experimental/optional/constexpr/relops/3.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/relops/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/relops/4.cc
===================================================================
--- testsuite/experimental/optional/constexpr/relops/4.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/relops/4.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/relops/5.cc
===================================================================
--- testsuite/experimental/optional/constexpr/relops/5.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/relops/5.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/constexpr/relops/6.cc
===================================================================
--- testsuite/experimental/optional/constexpr/relops/6.cc	(revision 216246)
+++ testsuite/experimental/optional/constexpr/relops/6.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/in_place.cc
===================================================================
--- testsuite/experimental/optional/in_place.cc	(revision 216246)
+++ testsuite/experimental/optional/in_place.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/make_optional.cc
===================================================================
--- testsuite/experimental/optional/make_optional.cc	(revision 216246)
+++ testsuite/experimental/optional/make_optional.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/nullopt.cc
===================================================================
--- testsuite/experimental/optional/nullopt.cc	(revision 216246)
+++ testsuite/experimental/optional/nullopt.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/observers/1.cc
===================================================================
--- testsuite/experimental/optional/observers/1.cc	(revision 216246)
+++ testsuite/experimental/optional/observers/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/observers/2.cc
===================================================================
--- testsuite/experimental/optional/observers/2.cc	(revision 216246)
+++ testsuite/experimental/optional/observers/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/observers/3.cc
===================================================================
--- testsuite/experimental/optional/observers/3.cc	(revision 216246)
+++ testsuite/experimental/optional/observers/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/observers/4.cc
===================================================================
--- testsuite/experimental/optional/observers/4.cc	(revision 216246)
+++ testsuite/experimental/optional/observers/4.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/observers/5.cc
===================================================================
--- testsuite/experimental/optional/observers/5.cc	(revision 216246)
+++ testsuite/experimental/optional/observers/5.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/relops/1.cc
===================================================================
--- testsuite/experimental/optional/relops/1.cc	(revision 216246)
+++ testsuite/experimental/optional/relops/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/relops/2.cc
===================================================================
--- testsuite/experimental/optional/relops/2.cc	(revision 216246)
+++ testsuite/experimental/optional/relops/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/relops/3.cc
===================================================================
--- testsuite/experimental/optional/relops/3.cc	(revision 216246)
+++ testsuite/experimental/optional/relops/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/relops/4.cc
===================================================================
--- testsuite/experimental/optional/relops/4.cc	(revision 216246)
+++ testsuite/experimental/optional/relops/4.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/relops/5.cc
===================================================================
--- testsuite/experimental/optional/relops/5.cc	(revision 216246)
+++ testsuite/experimental/optional/relops/5.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/relops/6.cc
===================================================================
--- testsuite/experimental/optional/relops/6.cc	(revision 216246)
+++ testsuite/experimental/optional/relops/6.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/requirements.cc
===================================================================
--- testsuite/experimental/optional/requirements.cc	(revision 216246)
+++ testsuite/experimental/optional/requirements.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/optional/swap/1.cc
===================================================================
--- testsuite/experimental/optional/swap/1.cc	(revision 216246)
+++ testsuite/experimental/optional/swap/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do run }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/string_view/capacity/1.cc
===================================================================
--- testsuite/experimental/string_view/capacity/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/capacity/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/cons/char/1.cc
===================================================================
--- testsuite/experimental/string_view/cons/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/cons/char/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/cons/char/2.cc
===================================================================
--- testsuite/experimental/string_view/cons/char/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/cons/char/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/cons/char/3.cc
===================================================================
--- testsuite/experimental/string_view/cons/char/3.cc	(revision 216246)
+++ testsuite/experimental/string_view/cons/char/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/cons/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/cons/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/cons/wchar_t/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/cons/wchar_t/2.cc
===================================================================
--- testsuite/experimental/string_view/cons/wchar_t/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/cons/wchar_t/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/cons/wchar_t/3.cc
===================================================================
--- testsuite/experimental/string_view/cons/wchar_t/3.cc	(revision 216246)
+++ testsuite/experimental/string_view/cons/wchar_t/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/element_access/char/1.cc
===================================================================
--- testsuite/experimental/string_view/element_access/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/element_access/char/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/element_access/char/2.cc
===================================================================
--- testsuite/experimental/string_view/element_access/char/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/element_access/char/2.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run { xfail *-*-* } }
-// { dg-options "-std=gnu++1y -O0" }
+// { dg-options "-std=gnu++14 -O0" }
 // { dg-require-debug-mode "" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/string_view/element_access/char/empty.cc
===================================================================
--- testsuite/experimental/string_view/element_access/char/empty.cc	(revision 216246)
+++ testsuite/experimental/string_view/element_access/char/empty.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 3 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/element_access/char/front_back.cc
===================================================================
--- testsuite/experimental/string_view/element_access/char/front_back.cc	(revision 216246)
+++ testsuite/experimental/string_view/element_access/char/front_back.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-require-string-conversions "" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/string_view/element_access/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/element_access/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/element_access/wchar_t/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/element_access/wchar_t/2.cc
===================================================================
--- testsuite/experimental/string_view/element_access/wchar_t/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/element_access/wchar_t/2.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run { xfail *-*-* } }
-// { dg-options "-std=gnu++1y -O0" }
+// { dg-options "-std=gnu++14 -O0" }
 // { dg-require-debug-mode "" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/string_view/element_access/wchar_t/empty.cc
===================================================================
--- testsuite/experimental/string_view/element_access/wchar_t/empty.cc	(revision 216246)
+++ testsuite/experimental/string_view/element_access/wchar_t/empty.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/element_access/wchar_t/front_back.cc
===================================================================
--- testsuite/experimental/string_view/element_access/wchar_t/front_back.cc	(revision 216246)
+++ testsuite/experimental/string_view/element_access/wchar_t/front_back.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-require-string-conversions "" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/string_view/include.cc
===================================================================
--- testsuite/experimental/string_view/include.cc	(revision 216246)
+++ testsuite/experimental/string_view/include.cc	(working copy)
@@ -19,7 +19,7 @@
 
 // NB: This issue affected only debug-mode.
 
-// { dg-options "-std=gnu++1y -fno-rtti" }
+// { dg-options "-std=gnu++14 -fno-rtti" }
 // { dg-do compile }
 
 #include <experimental/string_view>
Index: testsuite/experimental/string_view/inserters/char/1.cc
===================================================================
--- testsuite/experimental/string_view/inserters/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/inserters/char/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/inserters/char/2.cc
===================================================================
--- testsuite/experimental/string_view/inserters/char/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/inserters/char/2.cc	(working copy)
@@ -22,7 +22,7 @@
 // working, not to mention other major details like char_traits, and
 // all of the string_view class.
 
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-require-fileio "" }
 
 #include <experimental/string_view>
Index: testsuite/experimental/string_view/inserters/char/3.cc
===================================================================
--- testsuite/experimental/string_view/inserters/char/3.cc	(revision 216246)
+++ testsuite/experimental/string_view/inserters/char/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/inserters/pod/10081-out.cc
===================================================================
--- testsuite/experimental/string_view/inserters/pod/10081-out.cc	(revision 216246)
+++ testsuite/experimental/string_view/inserters/pod/10081-out.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/inserters/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/inserters/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/inserters/wchar_t/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/inserters/wchar_t/2.cc
===================================================================
--- testsuite/experimental/string_view/inserters/wchar_t/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/inserters/wchar_t/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/inserters/wchar_t/3.cc
===================================================================
--- testsuite/experimental/string_view/inserters/wchar_t/3.cc	(revision 216246)
+++ testsuite/experimental/string_view/inserters/wchar_t/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/literals/types.cc
===================================================================
--- testsuite/experimental/string_view/literals/types.cc	(revision 216246)
+++ testsuite/experimental/string_view/literals/types.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/string_view/literals/values.cc
===================================================================
--- testsuite/experimental/string_view/literals/values.cc	(revision 216246)
+++ testsuite/experimental/string_view/literals/values.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/modifiers/remove_prefix/char/1.cc
===================================================================
--- testsuite/experimental/string_view/modifiers/remove_prefix/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/modifiers/remove_prefix/char/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/modifiers/remove_prefix/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/modifiers/remove_prefix/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/modifiers/remove_prefix/wchar_t/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/modifiers/remove_suffix/char/1.cc
===================================================================
--- testsuite/experimental/string_view/modifiers/remove_suffix/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/modifiers/remove_suffix/char/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/modifiers/remove_suffix/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/modifiers/remove_suffix/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/modifiers/remove_suffix/wchar_t/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/compare/char/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/compare/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/compare/char/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/compare/char/13650.cc
===================================================================
--- testsuite/experimental/string_view/operations/compare/char/13650.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/compare/char/13650.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/compare/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/compare/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/compare/wchar_t/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/compare/wchar_t/13650.cc
===================================================================
--- testsuite/experimental/string_view/operations/compare/wchar_t/13650.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/compare/wchar_t/13650.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/copy/char/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/copy/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/copy/char/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/copy/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/copy/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/copy/wchar_t/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/data/char/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/data/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/data/char/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/data/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/data/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/data/wchar_t/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/find/char/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/find/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/find/char/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/find/char/2.cc
===================================================================
--- testsuite/experimental/string_view/operations/find/char/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/find/char/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/find/char/3.cc
===================================================================
--- testsuite/experimental/string_view/operations/find/char/3.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/find/char/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/find/char/4.cc
===================================================================
--- testsuite/experimental/string_view/operations/find/char/4.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/find/char/4.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/find/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/find/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/find/wchar_t/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/find/wchar_t/2.cc
===================================================================
--- testsuite/experimental/string_view/operations/find/wchar_t/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/find/wchar_t/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/find/wchar_t/3.cc
===================================================================
--- testsuite/experimental/string_view/operations/find/wchar_t/3.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/find/wchar_t/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/find/wchar_t/4.cc
===================================================================
--- testsuite/experimental/string_view/operations/find/wchar_t/4.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/find/wchar_t/4.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/rfind/char/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/rfind/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/rfind/char/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/rfind/char/2.cc
===================================================================
--- testsuite/experimental/string_view/operations/rfind/char/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/rfind/char/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
@@ -12,7 +12,7 @@
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 // GNU General Public License for more details.
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // You should have received a copy of the GNU General Public License along
 // with this library; see the file COPYING3.  If not see
Index: testsuite/experimental/string_view/operations/rfind/char/3.cc
===================================================================
--- testsuite/experimental/string_view/operations/rfind/char/3.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/rfind/char/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/rfind/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/rfind/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/rfind/wchar_t/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/rfind/wchar_t/2.cc
===================================================================
--- testsuite/experimental/string_view/operations/rfind/wchar_t/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/rfind/wchar_t/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/rfind/wchar_t/3.cc
===================================================================
--- testsuite/experimental/string_view/operations/rfind/wchar_t/3.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/rfind/wchar_t/3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/substr/char/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/substr/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/substr/char/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/substr/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/substr/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/substr/wchar_t/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operations/to_string/1.cc
===================================================================
--- testsuite/experimental/string_view/operations/to_string/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/operations/to_string/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operators/char/2.cc
===================================================================
--- testsuite/experimental/string_view/operators/char/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/operators/char/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/operators/wchar_t/2.cc
===================================================================
--- testsuite/experimental/string_view/operators/wchar_t/2.cc	(revision 216246)
+++ testsuite/experimental/string_view/operators/wchar_t/2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/range_access/char/1.cc
===================================================================
--- testsuite/experimental/string_view/range_access/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/range_access/char/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/range_access/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/range_access/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/range_access/wchar_t/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/experimental/string_view/requirements/explicit_instantiation/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/requirements/explicit_instantiation/1.cc	(working copy)
@@ -21,6 +21,6 @@
 #include <experimental/string_view>
 
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 template class std::experimental::basic_string_view<int, std::char_traits<int>>;
Index: testsuite/experimental/string_view/requirements/explicit_instantiation/char/1.cc
===================================================================
--- testsuite/experimental/string_view/requirements/explicit_instantiation/char/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/requirements/explicit_instantiation/char/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/requirements/explicit_instantiation/char16_t/1.cc
===================================================================
--- testsuite/experimental/string_view/requirements/explicit_instantiation/char16_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/requirements/explicit_instantiation/char16_t/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-require-cstdint "" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/string_view/requirements/explicit_instantiation/char32_t/1.cc
===================================================================
--- testsuite/experimental/string_view/requirements/explicit_instantiation/char32_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/requirements/explicit_instantiation/char32_t/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-require-cstdint "" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/string_view/requirements/explicit_instantiation/wchar_t/1.cc
===================================================================
--- testsuite/experimental/string_view/requirements/explicit_instantiation/wchar_t/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/requirements/explicit_instantiation/wchar_t/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/experimental/string_view/requirements/typedefs.cc
===================================================================
--- testsuite/experimental/string_view/requirements/typedefs.cc	(revision 216246)
+++ testsuite/experimental/string_view/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/experimental/string_view/types/1.cc
===================================================================
--- testsuite/experimental/string_view/types/1.cc	(revision 216246)
+++ testsuite/experimental/string_view/types/1.cc	(working copy)
@@ -17,7 +17,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 
-// { dg-options "-std=gnu++1y" }
+// { dg-options "-std=gnu++14" }
 // { dg-do compile }
 
 #include <experimental/string_view>

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [v3] Minimally exercise the other alias_decls in <type_traits>
  2014-10-15 10:51     ` Paolo Carlini
@ 2014-10-15 15:47       ` Paolo Carlini
  2014-10-15 17:36         ` Mike Stump
  2014-10-15 17:35       ` Mike Stump
  1 sibling, 1 reply; 12+ messages in thread
From: Paolo Carlini @ 2014-10-15 15:47 UTC (permalink / raw)
  To: Jonathan Wakely; +Cc: gcc-patches, libstdc++

[-- Attachment #1: Type: text/plain, Size: 95 bytes --]

... the below replaces -std=c++0x and -std=c++11 with -std=gnu++11.

Paolo.

/////////////////

[-- Attachment #2: CL_11 --]
[-- Type: text/plain, Size: 36340 bytes --]

2014-10-15  Paolo Carlini  <paolo.carlini@oracle.com>

	* testsuite/20_util/bind/57899.cc: Prefer -std=gnu++11.
	* testsuite/20_util/common_type/requirements/sfinae_friendly_1.cc:
	Likewise.
	* testsuite/20_util/common_type/requirements/sfinae_friendly_2.cc:
	Likewise.
	* testsuite/20_util/duration/requirements/sfinae_friendly_1.cc:
	Likewise.
	* testsuite/23_containers/map/modifiers/erase/abi_tag.cc: Likewise.
	* testsuite/23_containers/multimap/modifiers/erase/abi_tag.cc: Likewise.
	* testsuite/23_containers/multiset/modifiers/erase/abi_tag.cc: Likewise.
	* testsuite/23_containers/set/modifiers/erase/abi_tag.cc: Likewise.
	* testsuite/23_containers/unordered_map/allocator/copy.cc: Likewise.
	* testsuite/23_containers/unordered_map/allocator/copy_assign.cc: 
	Likewise.
	* testsuite/23_containers/unordered_map/allocator/minimal.cc: Likewise.
	* testsuite/23_containers/unordered_map/allocator/move.cc: Likewise.
	* testsuite/23_containers/unordered_map/allocator/move_assign.cc: 
	Likewise.
	* testsuite/23_containers/unordered_map/allocator/noexcept.cc: Likewise.
	* testsuite/23_containers/unordered_map/allocator/swap.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/begin1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/begin2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/bucket_size_neg.cc: 
	Likewise.
	* testsuite/23_containers/unordered_map/debug/cbegin_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/cend_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/end1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/end2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/max_load_factor_neg.cc: 
	Likewise.
	* testsuite/23_containers/unordered_multimap/allocator/copy.cc: 
	Likewise.
	* testsuite/23_containers/unordered_multimap/allocator/copy_assign.cc: 
	Likewise.
	* testsuite/23_containers/unordered_multimap/allocator/minimal.cc: 
	Likewise.
	* testsuite/23_containers/unordered_multimap/allocator/move.cc: 
	Likewise.
	* testsuite/23_containers/unordered_multimap/allocator/move_assign.cc: 
	Likewise.
	* testsuite/23_containers/unordered_multimap/allocator/noexcept.cc: 
	Likewise.
	* testsuite/23_containers/unordered_multimap/allocator/swap.cc: 
	Likewise.
	* testsuite/23_containers/unordered_multimap/debug/begin1_neg.cc: 
	Likewise.
	* testsuite/23_containers/unordered_multimap/debug/begin2_neg.cc: 
	Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	bucket_size_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	cbegin_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	cend_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	end1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	end2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	max_load_factor_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/allocator/
	copy.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/allocator/
	copy_assign.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/allocator/
	minimal.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/allocator/
	move.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/allocator/
	move_assign.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/allocator/
	noexcept.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/allocator/
	swap.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	begin1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	begin2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	bucket_size_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	cbegin_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	cend_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	end1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	end2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	max_load_factor_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/allocator/copy.cc: Likewise.
	* testsuite/23_containers/unordered_set/allocator/
	copy_assign.cc: Likewise.
	* testsuite/23_containers/unordered_set/allocator/minimal.cc: Likewise.
	* testsuite/23_containers/unordered_set/allocator/move.cc: Likewise.
	* testsuite/23_containers/unordered_set/allocator/
	move_assign.cc: Likewise.
	* testsuite/23_containers/unordered_set/allocator/
	noexcept.cc: Likewise.
	* testsuite/23_containers/unordered_set/allocator/swap.cc: Likewise.
	* testsuite/23_containers/unordered_set/buckets/swap.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/begin1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/begin2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/
	bucket_size_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/cbegin_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/cend_neg.cc: Likewise
	* testsuite/23_containers/unordered_set/debug/end1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/end2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/
	max_load_factor_neg.cc: Likewise.
	* testsuite/26_numerics/complex/abi_tag.cc: Likewise.
	* testsuite/26_numerics/headers/cstdlib/54686.c: Likewise.
	* testsuite/26_numerics/random/bernoulli_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/bernoulli_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/bernoulli_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/bernoulli_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/bernoulli_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/bernoulli_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/binomial_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/binomial_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/binomial_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/binomial_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/binomial_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/binomial_distribution/requirements/
	explicit_instantiation/1.cc
	* testsuite/26_numerics/random/binomial_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/cauchy_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/cauchy_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/cauchy_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/cauchy_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/cauchy_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/cauchy_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/cauchy_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/chi_squared_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/chi_squared_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/chi_squared_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/chi_squared_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/chi_squared_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/chi_squared_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/chi_squared_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/default_random_engine.cc: Likewise.
	* testsuite/26_numerics/random/discard_block_engine/cons/
	base_copy.cc: Likewise.
	* testsuite/26_numerics/random/discard_block_engine/cons/
	base_move.cc: Likewise.
	* testsuite/26_numerics/random/discard_block_engine/cons/
	copy.cc: Likewise.
	* testsuite/26_numerics/random/discard_block_engine/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/discard_block_engine/cons/
	seed1.cc: Likewise.
	* testsuite/26_numerics/random/discard_block_engine/cons/
	seed2.cc: Likewise.
	* testsuite/26_numerics/random/discard_block_engine/cons/
	seed_seq.cc: Likewise.
	* testsuite/26_numerics/random/discard_block_engine/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/discard_block_engine/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/discard_block_engine/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/discard_block_engine/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/discrete_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/discrete_distribution/cons/
	initlist.cc: Likewise.
	* testsuite/26_numerics/random/discrete_distribution/cons/
	num_xbound_fun.cc: Likewise.
	* testsuite/26_numerics/random/discrete_distribution/cons/
	range.cc: Likewise.
	* testsuite/26_numerics/random/discrete_distribution/operators/
	call-default.cc: Likewise.
	* testsuite/26_numerics/random/discrete_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/discrete_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/discrete_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/discrete_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/discrete_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/exponential_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/exponential_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/exponential_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/exponential_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/exponential_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/exponential_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/exponential_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/extreme_value_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/extreme_value_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/extreme_value_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/extreme_value_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/extreme_value_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/extreme_value_distribution/
	requirements/explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/extreme_value_distribution/
	requirements/typedefs.cc: Likewise.
	* testsuite/26_numerics/random/fisher_f_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/fisher_f_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/fisher_f_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/fisher_f_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/fisher_f_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/fisher_f_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/fisher_f_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/gamma_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/gamma_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/gamma_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/gamma_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/gamma_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/gamma_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/gamma_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/geometric_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/geometric_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/geometric_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/geometric_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/geometric_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/geometric_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/geometric_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/independent_bits_engine/cons/
	base_copy.cc: Likewise.
	* testsuite/26_numerics/random/independent_bits_engine/cons/
	base_move.cc: Likewise.
	* testsuite/26_numerics/random/independent_bits_engine/cons/
	copy.cc: Likewise.
	* testsuite/26_numerics/random/independent_bits_engine/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/independent_bits_engine/cons/
	seed1.cc: Likewise.
	* testsuite/26_numerics/random/independent_bits_engine/cons/
	seed2.cc: Likewise.
	* testsuite/26_numerics/random/independent_bits_engine/cons/
	seed_seq.cc: Likewise.
	* testsuite/26_numerics/random/independent_bits_engine/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/independent_bits_engine/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/independent_bits_engine/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/independent_bits_engine/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/knuth_b.cc: Likewise.
	* testsuite/26_numerics/random/linear_congruential_engine/cons/
	copy.cc: Likewise.
	* testsuite/26_numerics/random/linear_congruential_engine/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/linear_congruential_engine/cons/
	seed1.cc: Likewise.
	* testsuite/26_numerics/random/linear_congruential_engine/cons/
	seed2.cc: Likewise.
	* testsuite/26_numerics/random/linear_congruential_engine/cons/
	seed_seq.cc: Likewise.
	* testsuite/26_numerics/random/linear_congruential_engine/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/linear_congruential_engine/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/linear_congruential_engine/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/linear_congruential_engine/requirements/
	constants.cc: Likewise.
	* testsuite/26_numerics/random/linear_congruential_engine/requirements/
	non_uint_neg.cc: Likewise.
	* testsuite/26_numerics/random/linear_congruential_engine/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/lognormal_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/lognormal_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/lognormal_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/lognormal_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/lognormal_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/lognormal_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/lognormal_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/mersenne_twister_engine/cons/
	copy.cc: Likewise.
	* testsuite/26_numerics/random/mersenne_twister_engine/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/mersenne_twister_engine/cons/
	seed1.cc: Likewise.
	* testsuite/26_numerics/random/mersenne_twister_engine/cons/
	seed2.cc: Likewise.
	* testsuite/26_numerics/random/mersenne_twister_engine/cons/
	seed_seq.cc: Likewise.
	* testsuite/26_numerics/random/mersenne_twister_engine/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/mersenne_twister_engine/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/mersenne_twister_engine/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/mersenne_twister_engine/requirements/
	constants.cc: Likewise.
	* testsuite/26_numerics/random/mersenne_twister_engine/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/minstd_rand.cc: Likewise.
	* testsuite/26_numerics/random/minstd_rand0.cc: Likewise.
	* testsuite/26_numerics/random/mt19937.cc: Likewise.
	* testsuite/26_numerics/random/mt19937_64.cc: Likewise.
	* testsuite/26_numerics/random/negative_binomial_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/negative_binomial_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/negative_binomial_distribution/
	operators/equal.cc: Likewise.
	* testsuite/26_numerics/random/negative_binomial_distribution/
	operators/inequal.cc: Likewise.
	* testsuite/26_numerics/random/negative_binomial_distribution/
	operators/serialize.cc: Likewise.
	* testsuite/26_numerics/random/negative_binomial_distribution/
	requirements/explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/negative_binomial_distribution/
	requirements/typedefs.cc: Likewise.
	* testsuite/26_numerics/random/normal_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/normal_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/normal_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/normal_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/normal_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/normal_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/normal_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_constant_distribution/
	cons/default.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_constant_distribution/
	cons/initlist_fun.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_constant_distribution/
	cons/num_xbound_fun.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_constant_distribution/
	cons/range.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_constant_distribution/
	operators/call-default.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_constant_distribution/
	operators/equal.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_constant_distribution/
	operators/inequal.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_constant_distribution/
	operators/serialize.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_constant_distribution/
	requirements/explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_constant_distribution/
	requirements/typedefs.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_linear_distribution/
	cons/default.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_linear_distribution/
	cons/initlist_fun.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_linear_distribution/
	cons/num_xbound_fun.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_linear_distribution/
	cons/range.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_linear_distribution/
	operators/call-default.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_linear_distribution/
	operators/equal.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_linear_distribution/
	operators/inequal.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_linear_distribution/
	operators/serialize.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_linear_distribution/
	requirements/explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/piecewise_linear_distribution/
	requirements/typedefs.cc: Likewise.
	* testsuite/26_numerics/random/poisson_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/poisson_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/poisson_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/poisson_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/poisson_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/poisson_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/poisson_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/random_device/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/random_device/cons/token.cc: Likewise.
	* testsuite/26_numerics/random/random_device/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/ranlux24.cc: Likewise.
	* testsuite/26_numerics/random/ranlux24_base.cc: Likewise.
	* testsuite/26_numerics/random/ranlux48.cc: Likewise.
	* testsuite/26_numerics/random/ranlux48_base.cc: Likewise.
	* testsuite/26_numerics/random/seed_seq/cons/default.cc: Likewise.
	* testsuite/26_numerics/random/seed_seq/cons/initlist.cc: Likewise.
	* testsuite/26_numerics/random/seed_seq/cons/range.cc: Likewise.
	* testsuite/26_numerics/random/seed_seq/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/cons/
	base_copy.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/cons/
	base_move.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/cons/
	copy.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/cons/
	seed1.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/cons/
	seed2.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/cons/
	seed_seq.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/requirements/
	constants.cc: Likewise.
	* testsuite/26_numerics/random/shuffle_order_engine/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/student_t_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/student_t_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/student_t_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/student_t_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/student_t_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/student_t_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/student_t_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/subtract_with_carry_engine/cons/
	copy.cc: Likewise.
	* testsuite/26_numerics/random/subtract_with_carry_engine/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/subtract_with_carry_engine/cons/
	seed1.cc: Likewise.
	* testsuite/26_numerics/random/subtract_with_carry_engine/cons/
	seed2.cc: Likewise.
	* testsuite/26_numerics/random/subtract_with_carry_engine/cons/
	seed_seq.cc: Likewise.
	* testsuite/26_numerics/random/subtract_with_carry_engine/
	operators/equal.cc: Likewise.
	* testsuite/26_numerics/random/subtract_with_carry_engine/
	operators/inequal.cc: Likewise.
	* testsuite/26_numerics/random/subtract_with_carry_engine/
	operators/serialize.cc: Likewise.
	* testsuite/26_numerics/random/subtract_with_carry_engine/
	requirements/constants.cc: Likewise.
	* testsuite/26_numerics/random/subtract_with_carry_engine/
	requirements/typedefs.cc: Likewise.
	* testsuite/26_numerics/random/uniform_int_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/uniform_int_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/uniform_int_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/uniform_int_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/uniform_int_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/uniform_int_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/uniform_int_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/uniform_real_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/uniform_real_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/uniform_real_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/uniform_real_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/uniform_real_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/uniform_real_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/uniform_real_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/26_numerics/random/weibull_distribution/cons/
	default.cc: Likewise.
	* testsuite/26_numerics/random/weibull_distribution/cons/
	parms.cc: Likewise.
	* testsuite/26_numerics/random/weibull_distribution/operators/
	equal.cc: Likewise.
	* testsuite/26_numerics/random/weibull_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/26_numerics/random/weibull_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/26_numerics/random/weibull_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/26_numerics/random/weibull_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_match/basic/
	string_01.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_match/basic/
	string_range_00_03.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_match/basic/
	string_range_01_03.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_match/basic/
	string_range_02_03.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_match/extended/
	cstring_plus.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_match/extended/
	cstring_questionmark.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_match/extended/
	string_any.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_match/extended/
	string_range_00_03.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_match/extended/
	string_range_01_03.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_match/extended/
	string_range_02_03.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/char/cstring.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/basic/cstring.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/basic/default.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/basic/
	pstring_wchar_t.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/char/cstring_awk.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/char/cstring_ecma.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/char/cstring_egrep.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/char/cstring_grep.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/copy_char.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/extended/cstring.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/wchar_t/range.cc: Likewise.
	* testsuite/28_regex/constants/error_type.cc: Likewise.
	* testsuite/28_regex/constants/match_flag_type.cc: Likewise.
	* testsuite/28_regex/constants/syntax_option_type.cc: Likewise.
	* testsuite/28_regex/iterators/regex_iterator/ctors/char/
	default.cc: Likewise.
	* testsuite/28_regex/iterators/regex_iterator/ctors/wchar_t/
	default.cc: Likewise.
	* testsuite/28_regex/iterators/regex_iterator/typedefs.cc: Likewise.
	* testsuite/28_regex/iterators/regex_token_iterator/ctors/char/
	default.cc: Likewise.
	* testsuite/28_regex/iterators/regex_token_iterator/
	typedefs.cc: Likewise.
	* testsuite/28_regex/match_results/ctors/char/default.cc: Likewise.
	* testsuite/28_regex/match_results/ctors/wchar_t/default.cc: Likewise.
	* testsuite/28_regex/match_results/typedefs.cc: Likewise.
	* testsuite/28_regex/regex_error/base.cc: Likewise.
	* testsuite/28_regex/regex_error/regex_error.cc: Likewise.
	* testsuite/28_regex/requirements/typedefs.cc: Likewise.
	* testsuite/28_regex/sub_match/cast_char.cc: Likewise.
	* testsuite/28_regex/sub_match/cast_wchar_t.cc: Likewise.
	* testsuite/28_regex/sub_match/length.cc: Likewise.
	* testsuite/28_regex/sub_match/typedefs.cc: Likewise.
	* testsuite/28_regex/traits/char/isctype.cc: Likewise.
	* testsuite/28_regex/traits/char/length.cc: Likewise.
	* testsuite/28_regex/traits/char/lookup_classname.cc: Likewise.
	* testsuite/28_regex/traits/char/lookup_collatename.cc: Likewise.
	* testsuite/28_regex/traits/char/transform.cc: Likewise.
	* testsuite/28_regex/traits/char/transform_primary.cc: Likewise.
	* testsuite/28_regex/traits/char/translate.cc: Likewise.
	* testsuite/28_regex/traits/wchar_t/isctype.cc: Likewise.
	* testsuite/28_regex/traits/wchar_t/length.cc: Likewise.
	* testsuite/28_regex/traits/wchar_t/lookup_classname.cc: Likewise.
	* testsuite/28_regex/traits/wchar_t/lookup_collatename.cc: Likewise.
	* testsuite/28_regex/traits/wchar_t/transform.cc: Likewise.
	* testsuite/28_regex/traits/wchar_t/transform_primary.cc: Likewise.
	* testsuite/28_regex/traits/wchar_t/translate.cc: Likewise.
	* testsuite/ext/random/arcsine_distribution/cons/default.cc: Likewise.
	* testsuite/ext/random/arcsine_distribution/cons/parms.cc: Likewise.
	* testsuite/ext/random/arcsine_distribution/operators/
	equal.cc: Likewise.
	* testsuite/ext/random/arcsine_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/ext/random/arcsine_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/arcsine_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/ext/random/arcsine_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/ext/random/beta_distribution/cons/default.cc: Likewise.
	* testsuite/ext/random/beta_distribution/cons/parms.cc: Likewise.
	* testsuite/ext/random/beta_distribution/operators/equal.cc: Likewise.
	* testsuite/ext/random/beta_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/ext/random/beta_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/beta_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/ext/random/beta_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/ext/random/hoyt_distribution/cons/default.cc: Likewise.
	* testsuite/ext/random/hoyt_distribution/cons/parms.cc: Likewise.
	* testsuite/ext/random/hoyt_distribution/operators/equal.cc: Likewise.
	* testsuite/ext/random/hoyt_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/ext/random/hoyt_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/hoyt_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/ext/random/hoyt_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/ext/random/k_distribution/cons/default.cc: Likewise.
	* testsuite/ext/random/k_distribution/cons/parms.cc: Likewise.
	* testsuite/ext/random/k_distribution/operators/equal.cc: Likewise.
	* testsuite/ext/random/k_distribution/operators/inequal.cc: Likewise.
	* testsuite/ext/random/k_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/k_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/ext/random/k_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/ext/random/logistic_distribution/cons/default.cc: Likewise.
	* testsuite/ext/random/logistic_distribution/cons/parms.cc: Likewise.
	* testsuite/ext/random/logistic_distribution/operators/
	equal.cc: Likewise.
	* testsuite/ext/random/logistic_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/ext/random/logistic_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/logistic_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/ext/random/nakagami_distribution/cons/
	default.cc: Likewise.
	* testsuite/ext/random/nakagami_distribution/cons/parms.cc: Likewise.
	* testsuite/ext/random/nakagami_distribution/operators/
	equal.cc: Likewise.
	* testsuite/ext/random/nakagami_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/ext/random/nakagami_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/nakagami_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/ext/random/nakagami_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/ext/random/normal_mv_distribution/cons/
	default.cc: Likewise.
	* testsuite/ext/random/normal_mv_distribution/cons/
	parms.cc: Likewise.
	* testsuite/ext/random/normal_mv_distribution/operators/
	equal.cc: Likewise.
	* testsuite/ext/random/normal_mv_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/ext/random/normal_mv_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/normal_mv_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/ext/random/normal_mv_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/ext/random/pareto_distribution/cons/default.cc: Likewise.
	* testsuite/ext/random/pareto_distribution/cons/parms.cc: Likewise.
	* testsuite/ext/random/pareto_distribution/operators/
	equal.cc: Likewise.
	* testsuite/ext/random/pareto_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/ext/random/pareto_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/pareto_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/ext/random/pareto_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/ext/random/rice_distribution/cons/default.cc: Likewise.
	* testsuite/ext/random/rice_distribution/cons/parms.cc: Likewise.
	* testsuite/ext/random/rice_distribution/operators/equal.cc: Likewise.
	* testsuite/ext/random/rice_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/ext/random/rice_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/rice_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/ext/random/rice_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/
	copy.cc: Likewise.
	* testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/
	default.cc: Likewise.
	* testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/
	seed1.cc: Likewise.
	* testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/
	seed2.cc: Likewise.
	* testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/
	seed_seq.cc: Likewise.
	* testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/
	equal.cc: Likewise.
	* testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/
	inequal.cc: Likewise.
	* testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/triangular_distribution/cons/
	default.cc: Likewise.
	* testsuite/ext/random/triangular_distribution/cons/parms.cc: Likewise.
	* testsuite/ext/random/triangular_distribution/operators/
	equal.cc: Likewise.
	* testsuite/ext/random/triangular_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/ext/random/triangular_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/triangular_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/ext/random/triangular_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/ext/random/von_mises_distribution/cons/
	default.cc: Likewise.
	* testsuite/ext/random/von_mises_distribution/cons/parms.cc: Likewise.
	* testsuite/ext/random/von_mises_distribution/operators/
	equal.cc: Likewise.
	* testsuite/ext/random/von_mises_distribution/operators/
	inequal.cc: Likewise.
	* testsuite/ext/random/von_mises_distribution/operators/
	serialize.cc: Likewise.
	* testsuite/ext/random/von_mises_distribution/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/ext/random/von_mises_distribution/requirements/
	typedefs.cc: Likewise.
	* testsuite/performance/23_containers/insert/54075.cc: Likewise.
	* testsuite/performance/23_containers/insert/
	unordered_set.cc: Likewise.

[-- Attachment #3: patch_11 --]
[-- Type: text/plain, Size: 220547 bytes --]

Index: testsuite/20_util/bind/57899.cc
===================================================================
--- testsuite/20_util/bind/57899.cc	(revision 216264)
+++ testsuite/20_util/bind/57899.cc	(working copy)
@@ -19,7 +19,7 @@
 
 // PR c++/57899
 // { dg-do compile }
-// { dg-options -std=c++11 }
+// { dg-options -std=gnu++11 }
 
 #include <functional>
 using std::bind;
Index: testsuite/20_util/common_type/requirements/sfinae_friendly_1.cc
===================================================================
--- testsuite/20_util/common_type/requirements/sfinae_friendly_1.cc	(revision 216264)
+++ testsuite/20_util/common_type/requirements/sfinae_friendly_1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/common_type/requirements/sfinae_friendly_2.cc
===================================================================
--- testsuite/20_util/common_type/requirements/sfinae_friendly_2.cc	(revision 216264)
+++ testsuite/20_util/common_type/requirements/sfinae_friendly_2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/20_util/duration/requirements/sfinae_friendly_1.cc
===================================================================
--- testsuite/20_util/duration/requirements/sfinae_friendly_1.cc	(revision 216264)
+++ testsuite/20_util/duration/requirements/sfinae_friendly_1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/23_containers/map/modifiers/erase/abi_tag.cc
===================================================================
--- testsuite/23_containers/map/modifiers/erase/abi_tag.cc	(revision 216264)
+++ testsuite/23_containers/map/modifiers/erase/abi_tag.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options -std=c++11 }
+// { dg-options -std=gnu++11 }
 // { dg-require-normal-mode "" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/23_containers/multimap/modifiers/erase/abi_tag.cc
===================================================================
--- testsuite/23_containers/multimap/modifiers/erase/abi_tag.cc	(revision 216264)
+++ testsuite/23_containers/multimap/modifiers/erase/abi_tag.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options -std=c++11 }
+// { dg-options -std=gnu++11 }
 // { dg-require-normal-mode "" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/23_containers/multiset/modifiers/erase/abi_tag.cc
===================================================================
--- testsuite/23_containers/multiset/modifiers/erase/abi_tag.cc	(revision 216264)
+++ testsuite/23_containers/multiset/modifiers/erase/abi_tag.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options -std=c++11 }
+// { dg-options -std=gnu++11 }
 // { dg-require-normal-mode "" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/23_containers/set/modifiers/erase/abi_tag.cc
===================================================================
--- testsuite/23_containers/set/modifiers/erase/abi_tag.cc	(revision 216264)
+++ testsuite/23_containers/set/modifiers/erase/abi_tag.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options -std=c++11 }
+// { dg-options -std=gnu++11 }
 // { dg-require-normal-mode "" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/23_containers/unordered_map/allocator/copy.cc
===================================================================
--- testsuite/23_containers/unordered_map/allocator/copy.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/allocator/copy.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_map/allocator/copy_assign.cc
===================================================================
--- testsuite/23_containers/unordered_map/allocator/copy_assign.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/allocator/copy_assign.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_map/allocator/minimal.cc
===================================================================
--- testsuite/23_containers/unordered_map/allocator/minimal.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/allocator/minimal.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <memory>
Index: testsuite/23_containers/unordered_map/allocator/move.cc
===================================================================
--- testsuite/23_containers/unordered_map/allocator/move.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/allocator/move.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_map/allocator/move_assign.cc
===================================================================
--- testsuite/23_containers/unordered_map/allocator/move_assign.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/allocator/move_assign.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_map/allocator/noexcept.cc
===================================================================
--- testsuite/23_containers/unordered_map/allocator/noexcept.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/allocator/noexcept.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_allocator.h>
Index: testsuite/23_containers/unordered_map/allocator/swap.cc
===================================================================
--- testsuite/23_containers/unordered_map/allocator/swap.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/allocator/swap.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_map/debug/begin1_neg.cc
===================================================================
--- testsuite/23_containers/unordered_map/debug/begin1_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/debug/begin1_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_map/debug/begin2_neg.cc
===================================================================
--- testsuite/23_containers/unordered_map/debug/begin2_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/debug/begin2_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_map/debug/bucket_size_neg.cc
===================================================================
--- testsuite/23_containers/unordered_map/debug/bucket_size_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/debug/bucket_size_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_map/debug/cbegin_neg.cc
===================================================================
--- testsuite/23_containers/unordered_map/debug/cbegin_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/debug/cbegin_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_map/debug/cend_neg.cc
===================================================================
--- testsuite/23_containers/unordered_map/debug/cend_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/debug/cend_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_map/debug/end1_neg.cc
===================================================================
--- testsuite/23_containers/unordered_map/debug/end1_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/debug/end1_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_map/debug/end2_neg.cc
===================================================================
--- testsuite/23_containers/unordered_map/debug/end2_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/debug/end2_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_map/debug/max_load_factor_neg.cc
===================================================================
--- testsuite/23_containers/unordered_map/debug/max_load_factor_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_map/debug/max_load_factor_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_multimap/allocator/copy.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/allocator/copy.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/allocator/copy.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_multimap/allocator/copy_assign.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/allocator/copy_assign.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/allocator/copy_assign.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_multimap/allocator/minimal.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/allocator/minimal.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/allocator/minimal.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <memory>
Index: testsuite/23_containers/unordered_multimap/allocator/move.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/allocator/move.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/allocator/move.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_multimap/allocator/move_assign.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/allocator/move_assign.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/allocator/move_assign.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_multimap/allocator/noexcept.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/allocator/noexcept.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/allocator/noexcept.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_allocator.h>
Index: testsuite/23_containers/unordered_multimap/allocator/swap.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/allocator/swap.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/allocator/swap.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_map>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_multimap/debug/begin1_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/debug/begin1_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/debug/begin1_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_multimap/debug/begin2_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/debug/begin2_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/debug/begin2_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_multimap/debug/bucket_size_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/debug/bucket_size_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/debug/bucket_size_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_multimap/debug/cbegin_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/debug/cbegin_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/debug/cbegin_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_multimap/debug/cend_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/debug/cend_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/debug/cend_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_multimap/debug/end1_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/debug/end1_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/debug/end1_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_multimap/debug/end2_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/debug/end2_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/debug/end2_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_multimap/debug/max_load_factor_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multimap/debug/max_load_factor_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multimap/debug/max_load_factor_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_map>
Index: testsuite/23_containers/unordered_multiset/allocator/copy.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/allocator/copy.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/allocator/copy.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_multiset/allocator/copy_assign.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/allocator/copy_assign.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/allocator/copy_assign.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_multiset/allocator/minimal.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/allocator/minimal.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/allocator/minimal.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <memory>
Index: testsuite/23_containers/unordered_multiset/allocator/move.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/allocator/move.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/allocator/move.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_multiset/allocator/move_assign.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/allocator/move_assign.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/allocator/move_assign.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_multiset/allocator/noexcept.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/allocator/noexcept.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/allocator/noexcept.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_allocator.h>
Index: testsuite/23_containers/unordered_multiset/allocator/swap.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/allocator/swap.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/allocator/swap.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_multiset/debug/begin1_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/debug/begin1_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/debug/begin1_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_multiset/debug/begin2_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/debug/begin2_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/debug/begin2_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_multiset/debug/bucket_size_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/debug/bucket_size_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/debug/bucket_size_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_multiset/debug/cbegin_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/debug/cbegin_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/debug/cbegin_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_multiset/debug/cend_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/debug/cend_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/debug/cend_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_multiset/debug/end1_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/debug/end1_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/debug/end1_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_multiset/debug/end2_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/debug/end2_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/debug/end2_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_multiset/debug/max_load_factor_neg.cc
===================================================================
--- testsuite/23_containers/unordered_multiset/debug/max_load_factor_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_multiset/debug/max_load_factor_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_set/allocator/copy.cc
===================================================================
--- testsuite/23_containers/unordered_set/allocator/copy.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/allocator/copy.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_set/allocator/copy_assign.cc
===================================================================
--- testsuite/23_containers/unordered_set/allocator/copy_assign.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/allocator/copy_assign.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_set/allocator/minimal.cc
===================================================================
--- testsuite/23_containers/unordered_set/allocator/minimal.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/allocator/minimal.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <memory>
Index: testsuite/23_containers/unordered_set/allocator/move.cc
===================================================================
--- testsuite/23_containers/unordered_set/allocator/move.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/allocator/move.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_set/allocator/move_assign.cc
===================================================================
--- testsuite/23_containers/unordered_set/allocator/move_assign.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/allocator/move_assign.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_set/allocator/noexcept.cc
===================================================================
--- testsuite/23_containers/unordered_set/allocator/noexcept.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/allocator/noexcept.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_allocator.h>
Index: testsuite/23_containers/unordered_set/allocator/swap.cc
===================================================================
--- testsuite/23_containers/unordered_set/allocator/swap.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/allocator/swap.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <unordered_set>
 #include <testsuite_hooks.h>
Index: testsuite/23_containers/unordered_set/buckets/swap.cc
===================================================================
--- testsuite/23_containers/unordered_set/buckets/swap.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/buckets/swap.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
 //
Index: testsuite/23_containers/unordered_set/debug/begin1_neg.cc
===================================================================
--- testsuite/23_containers/unordered_set/debug/begin1_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/debug/begin1_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_set/debug/begin2_neg.cc
===================================================================
--- testsuite/23_containers/unordered_set/debug/begin2_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/debug/begin2_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_set/debug/bucket_size_neg.cc
===================================================================
--- testsuite/23_containers/unordered_set/debug/bucket_size_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/debug/bucket_size_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_set/debug/cbegin_neg.cc
===================================================================
--- testsuite/23_containers/unordered_set/debug/cbegin_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/debug/cbegin_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_set/debug/cend_neg.cc
===================================================================
--- testsuite/23_containers/unordered_set/debug/cend_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/debug/cend_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_set/debug/end1_neg.cc
===================================================================
--- testsuite/23_containers/unordered_set/debug/end1_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/debug/end1_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_set/debug/end2_neg.cc
===================================================================
--- testsuite/23_containers/unordered_set/debug/end2_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/debug/end2_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/23_containers/unordered_set/debug/max_load_factor_neg.cc
===================================================================
--- testsuite/23_containers/unordered_set/debug/max_load_factor_neg.cc	(revision 216264)
+++ testsuite/23_containers/unordered_set/debug/max_load_factor_neg.cc	(working copy)
@@ -16,7 +16,7 @@
 // <http://www.gnu.org/licenses/>.
 //
 // { dg-require-debug-mode "" }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run { xfail *-*-* } }
 
 #include <unordered_set>
Index: testsuite/26_numerics/complex/abi_tag.cc
===================================================================
--- testsuite/26_numerics/complex/abi_tag.cc	(revision 216264)
+++ testsuite/26_numerics/complex/abi_tag.cc	(working copy)
@@ -1,6 +1,6 @@
 // Test that the C++11 variants of real/imag have an ABI tag
 // { dg-do compile }
-// { dg-options -std=c++11 }
+// { dg-options -std=gnu++11 }
 
 #include <complex>
 
Index: testsuite/26_numerics/headers/cstdlib/54686.c
===================================================================
--- testsuite/26_numerics/headers/cstdlib/54686.c	(revision 216264)
+++ testsuite/26_numerics/headers/cstdlib/54686.c	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
 //
Index: testsuite/26_numerics/random/bernoulli_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/bernoulli_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/bernoulli_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/bernoulli_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/bernoulli_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/bernoulli_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/bernoulli_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/bernoulli_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/bernoulli_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/bernoulli_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/bernoulli_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/bernoulli_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/bernoulli_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/bernoulli_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/bernoulli_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/bernoulli_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/bernoulli_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/bernoulli_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/binomial_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/binomial_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/binomial_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/binomial_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/binomial_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/binomial_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/binomial_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/binomial_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/binomial_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/binomial_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/binomial_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/binomial_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/binomial_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/binomial_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/binomial_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/binomial_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/binomial_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/binomial_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/binomial_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/binomial_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/binomial_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/cauchy_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/cauchy_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/cauchy_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/cauchy_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/cauchy_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/cauchy_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/cauchy_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/cauchy_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/cauchy_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/cauchy_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/cauchy_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/cauchy_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/cauchy_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/cauchy_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/cauchy_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/cauchy_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/cauchy_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/cauchy_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/cauchy_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/cauchy_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/cauchy_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/chi_squared_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/chi_squared_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/chi_squared_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/chi_squared_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/chi_squared_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/chi_squared_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/chi_squared_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/chi_squared_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/chi_squared_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/chi_squared_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/chi_squared_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/chi_squared_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/chi_squared_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/chi_squared_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/chi_squared_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/chi_squared_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/chi_squared_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/chi_squared_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/chi_squared_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/chi_squared_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/chi_squared_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/default_random_engine.cc
===================================================================
--- testsuite/26_numerics/random/default_random_engine.cc	(revision 216264)
+++ testsuite/26_numerics/random/default_random_engine.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discard_block_engine/cons/base_copy.cc
===================================================================
--- testsuite/26_numerics/random/discard_block_engine/cons/base_copy.cc	(revision 216264)
+++ testsuite/26_numerics/random/discard_block_engine/cons/base_copy.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discard_block_engine/cons/base_move.cc
===================================================================
--- testsuite/26_numerics/random/discard_block_engine/cons/base_move.cc	(revision 216264)
+++ testsuite/26_numerics/random/discard_block_engine/cons/base_move.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discard_block_engine/cons/copy.cc
===================================================================
--- testsuite/26_numerics/random/discard_block_engine/cons/copy.cc	(revision 216264)
+++ testsuite/26_numerics/random/discard_block_engine/cons/copy.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-02-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/discard_block_engine/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/discard_block_engine/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/discard_block_engine/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discard_block_engine/cons/seed1.cc
===================================================================
--- testsuite/26_numerics/random/discard_block_engine/cons/seed1.cc	(revision 216264)
+++ testsuite/26_numerics/random/discard_block_engine/cons/seed1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discard_block_engine/cons/seed2.cc
===================================================================
--- testsuite/26_numerics/random/discard_block_engine/cons/seed2.cc	(revision 216264)
+++ testsuite/26_numerics/random/discard_block_engine/cons/seed2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discard_block_engine/cons/seed_seq.cc
===================================================================
--- testsuite/26_numerics/random/discard_block_engine/cons/seed_seq.cc	(revision 216264)
+++ testsuite/26_numerics/random/discard_block_engine/cons/seed_seq.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discard_block_engine/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/discard_block_engine/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/discard_block_engine/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discard_block_engine/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/discard_block_engine/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/discard_block_engine/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/discard_block_engine/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/discard_block_engine/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/discard_block_engine/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discard_block_engine/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/discard_block_engine/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/discard_block_engine/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discrete_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/discrete_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/discrete_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discrete_distribution/cons/initlist.cc
===================================================================
--- testsuite/26_numerics/random/discrete_distribution/cons/initlist.cc	(revision 216264)
+++ testsuite/26_numerics/random/discrete_distribution/cons/initlist.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discrete_distribution/cons/num_xbound_fun.cc
===================================================================
--- testsuite/26_numerics/random/discrete_distribution/cons/num_xbound_fun.cc	(revision 216264)
+++ testsuite/26_numerics/random/discrete_distribution/cons/num_xbound_fun.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discrete_distribution/cons/range.cc
===================================================================
--- testsuite/26_numerics/random/discrete_distribution/cons/range.cc	(revision 216264)
+++ testsuite/26_numerics/random/discrete_distribution/cons/range.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discrete_distribution/operators/call-default.cc
===================================================================
--- testsuite/26_numerics/random/discrete_distribution/operators/call-default.cc	(revision 216264)
+++ testsuite/26_numerics/random/discrete_distribution/operators/call-default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-10-13  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/discrete_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/discrete_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/discrete_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/discrete_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/discrete_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/discrete_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/discrete_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/discrete_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/discrete_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/discrete_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/discrete_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/discrete_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/discrete_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/discrete_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/discrete_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/exponential_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/exponential_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/exponential_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/exponential_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/exponential_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/exponential_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/exponential_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/exponential_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/exponential_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/exponential_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/exponential_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/exponential_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/exponential_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/exponential_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/exponential_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/exponential_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/exponential_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/exponential_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/exponential_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/exponential_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/exponential_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/extreme_value_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/extreme_value_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/extreme_value_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/extreme_value_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/extreme_value_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/extreme_value_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/extreme_value_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/extreme_value_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/extreme_value_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/extreme_value_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/extreme_value_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/extreme_value_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/extreme_value_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/extreme_value_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/extreme_value_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/extreme_value_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/extreme_value_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/extreme_value_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/extreme_value_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/extreme_value_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/extreme_value_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/fisher_f_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/fisher_f_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/fisher_f_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/fisher_f_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/fisher_f_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/fisher_f_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/fisher_f_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/fisher_f_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/fisher_f_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/fisher_f_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/fisher_f_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/fisher_f_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/fisher_f_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/fisher_f_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/fisher_f_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/fisher_f_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/fisher_f_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/fisher_f_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/fisher_f_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/fisher_f_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/fisher_f_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/gamma_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/gamma_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/gamma_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/gamma_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/gamma_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/gamma_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/gamma_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/gamma_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/gamma_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/gamma_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/gamma_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/gamma_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/gamma_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/gamma_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/gamma_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/gamma_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/gamma_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/gamma_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/gamma_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/gamma_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/gamma_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/geometric_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/geometric_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/geometric_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/geometric_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/geometric_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/geometric_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/geometric_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/geometric_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/geometric_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/geometric_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/geometric_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/geometric_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/geometric_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/geometric_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/geometric_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/geometric_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/geometric_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/geometric_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/geometric_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/geometric_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/geometric_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/independent_bits_engine/cons/base_copy.cc
===================================================================
--- testsuite/26_numerics/random/independent_bits_engine/cons/base_copy.cc	(revision 216264)
+++ testsuite/26_numerics/random/independent_bits_engine/cons/base_copy.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/independent_bits_engine/cons/base_move.cc
===================================================================
--- testsuite/26_numerics/random/independent_bits_engine/cons/base_move.cc	(revision 216264)
+++ testsuite/26_numerics/random/independent_bits_engine/cons/base_move.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/independent_bits_engine/cons/copy.cc
===================================================================
--- testsuite/26_numerics/random/independent_bits_engine/cons/copy.cc	(revision 216264)
+++ testsuite/26_numerics/random/independent_bits_engine/cons/copy.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-02-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/independent_bits_engine/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/independent_bits_engine/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/independent_bits_engine/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/independent_bits_engine/cons/seed1.cc
===================================================================
--- testsuite/26_numerics/random/independent_bits_engine/cons/seed1.cc	(revision 216264)
+++ testsuite/26_numerics/random/independent_bits_engine/cons/seed1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/independent_bits_engine/cons/seed2.cc
===================================================================
--- testsuite/26_numerics/random/independent_bits_engine/cons/seed2.cc	(revision 216264)
+++ testsuite/26_numerics/random/independent_bits_engine/cons/seed2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/independent_bits_engine/cons/seed_seq.cc
===================================================================
--- testsuite/26_numerics/random/independent_bits_engine/cons/seed_seq.cc	(revision 216264)
+++ testsuite/26_numerics/random/independent_bits_engine/cons/seed_seq.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/independent_bits_engine/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/independent_bits_engine/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/independent_bits_engine/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/independent_bits_engine/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/independent_bits_engine/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/independent_bits_engine/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/independent_bits_engine/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/independent_bits_engine/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/independent_bits_engine/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/independent_bits_engine/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/independent_bits_engine/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/independent_bits_engine/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/knuth_b.cc
===================================================================
--- testsuite/26_numerics/random/knuth_b.cc	(revision 216264)
+++ testsuite/26_numerics/random/knuth_b.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/linear_congruential_engine/cons/copy.cc
===================================================================
--- testsuite/26_numerics/random/linear_congruential_engine/cons/copy.cc	(revision 216264)
+++ testsuite/26_numerics/random/linear_congruential_engine/cons/copy.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-02-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/linear_congruential_engine/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/linear_congruential_engine/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/linear_congruential_engine/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/linear_congruential_engine/cons/seed1.cc
===================================================================
--- testsuite/26_numerics/random/linear_congruential_engine/cons/seed1.cc	(revision 216264)
+++ testsuite/26_numerics/random/linear_congruential_engine/cons/seed1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/linear_congruential_engine/cons/seed2.cc
===================================================================
--- testsuite/26_numerics/random/linear_congruential_engine/cons/seed2.cc	(revision 216264)
+++ testsuite/26_numerics/random/linear_congruential_engine/cons/seed2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/linear_congruential_engine/cons/seed_seq.cc
===================================================================
--- testsuite/26_numerics/random/linear_congruential_engine/cons/seed_seq.cc	(revision 216264)
+++ testsuite/26_numerics/random/linear_congruential_engine/cons/seed_seq.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-02-01  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/linear_congruential_engine/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/linear_congruential_engine/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/linear_congruential_engine/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/linear_congruential_engine/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/linear_congruential_engine/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/linear_congruential_engine/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/linear_congruential_engine/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/linear_congruential_engine/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/linear_congruential_engine/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/linear_congruential_engine/requirements/constants.cc
===================================================================
--- testsuite/26_numerics/random/linear_congruential_engine/requirements/constants.cc	(revision 216264)
+++ testsuite/26_numerics/random/linear_congruential_engine/requirements/constants.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do link }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-09-29  Paolo Carlini <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/linear_congruential_engine/requirements/non_uint_neg.cc
===================================================================
--- testsuite/26_numerics/random/linear_congruential_engine/requirements/non_uint_neg.cc	(revision 216264)
+++ testsuite/26_numerics/random/linear_congruential_engine/requirements/non_uint_neg.cc	(working copy)
@@ -19,7 +19,7 @@
 // <http://www.gnu.org/licenses/>.
 
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 // { dg-error "not a valid type" "" { target *-*-* } 31 }
 
Index: testsuite/26_numerics/random/linear_congruential_engine/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/linear_congruential_engine/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/linear_congruential_engine/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/lognormal_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/lognormal_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/lognormal_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/lognormal_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/lognormal_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/lognormal_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/lognormal_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/lognormal_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/lognormal_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/lognormal_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/lognormal_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/lognormal_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/lognormal_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/lognormal_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/lognormal_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/lognormal_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/lognormal_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/lognormal_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/lognormal_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/lognormal_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/lognormal_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/mersenne_twister_engine/cons/copy.cc
===================================================================
--- testsuite/26_numerics/random/mersenne_twister_engine/cons/copy.cc	(revision 216264)
+++ testsuite/26_numerics/random/mersenne_twister_engine/cons/copy.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-02-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/mersenne_twister_engine/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/mersenne_twister_engine/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/mersenne_twister_engine/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/mersenne_twister_engine/cons/seed1.cc
===================================================================
--- testsuite/26_numerics/random/mersenne_twister_engine/cons/seed1.cc	(revision 216264)
+++ testsuite/26_numerics/random/mersenne_twister_engine/cons/seed1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/mersenne_twister_engine/cons/seed2.cc
===================================================================
--- testsuite/26_numerics/random/mersenne_twister_engine/cons/seed2.cc	(revision 216264)
+++ testsuite/26_numerics/random/mersenne_twister_engine/cons/seed2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/mersenne_twister_engine/cons/seed_seq.cc
===================================================================
--- testsuite/26_numerics/random/mersenne_twister_engine/cons/seed_seq.cc	(revision 216264)
+++ testsuite/26_numerics/random/mersenne_twister_engine/cons/seed_seq.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-02-01  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/mersenne_twister_engine/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/mersenne_twister_engine/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/mersenne_twister_engine/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/mersenne_twister_engine/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/mersenne_twister_engine/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/mersenne_twister_engine/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/mersenne_twister_engine/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/mersenne_twister_engine/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/mersenne_twister_engine/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/mersenne_twister_engine/requirements/constants.cc
===================================================================
--- testsuite/26_numerics/random/mersenne_twister_engine/requirements/constants.cc	(revision 216264)
+++ testsuite/26_numerics/random/mersenne_twister_engine/requirements/constants.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do link }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-09-29  Paolo Carlini <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/mersenne_twister_engine/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/mersenne_twister_engine/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/mersenne_twister_engine/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/minstd_rand.cc
===================================================================
--- testsuite/26_numerics/random/minstd_rand.cc	(revision 216264)
+++ testsuite/26_numerics/random/minstd_rand.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/minstd_rand0.cc
===================================================================
--- testsuite/26_numerics/random/minstd_rand0.cc	(revision 216264)
+++ testsuite/26_numerics/random/minstd_rand0.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/mt19937.cc
===================================================================
--- testsuite/26_numerics/random/mt19937.cc	(revision 216264)
+++ testsuite/26_numerics/random/mt19937.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/mt19937_64.cc
===================================================================
--- testsuite/26_numerics/random/mt19937_64.cc	(revision 216264)
+++ testsuite/26_numerics/random/mt19937_64.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/negative_binomial_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/negative_binomial_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/negative_binomial_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/negative_binomial_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/negative_binomial_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/negative_binomial_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/negative_binomial_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/negative_binomial_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/negative_binomial_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/negative_binomial_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/negative_binomial_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/negative_binomial_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/negative_binomial_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/negative_binomial_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/negative_binomial_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/negative_binomial_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/negative_binomial_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/negative_binomial_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/negative_binomial_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/negative_binomial_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/negative_binomial_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/normal_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/normal_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/normal_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/normal_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/normal_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/normal_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/normal_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/normal_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/normal_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/normal_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/normal_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/normal_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/normal_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/normal_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/normal_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/normal_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/normal_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/normal_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/normal_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/normal_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/normal_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_constant_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_constant_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_constant_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_constant_distribution/cons/initlist_fun.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_constant_distribution/cons/initlist_fun.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_constant_distribution/cons/initlist_fun.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_constant_distribution/cons/num_xbound_fun.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_constant_distribution/cons/num_xbound_fun.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_constant_distribution/cons/num_xbound_fun.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_constant_distribution/cons/range.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_constant_distribution/cons/range.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_constant_distribution/cons/range.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_constant_distribution/operators/call-default.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_constant_distribution/operators/call-default.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_constant_distribution/operators/call-default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-10-13  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/piecewise_constant_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_constant_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_constant_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/piecewise_constant_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_constant_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_constant_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/piecewise_constant_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_constant_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_constant_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_constant_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_constant_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_constant_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/piecewise_constant_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_constant_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_constant_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_linear_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_linear_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_linear_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_linear_distribution/cons/initlist_fun.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_linear_distribution/cons/initlist_fun.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_linear_distribution/cons/initlist_fun.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_linear_distribution/cons/num_xbound_fun.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_linear_distribution/cons/num_xbound_fun.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_linear_distribution/cons/num_xbound_fun.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_linear_distribution/cons/range.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_linear_distribution/cons/range.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_linear_distribution/cons/range.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_linear_distribution/operators/call-default.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_linear_distribution/operators/call-default.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_linear_distribution/operators/call-default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-10-12  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/piecewise_linear_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_linear_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_linear_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/piecewise_linear_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_linear_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_linear_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/piecewise_linear_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_linear_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_linear_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/piecewise_linear_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_linear_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_linear_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/piecewise_linear_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/piecewise_linear_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/piecewise_linear_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-03  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/poisson_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/poisson_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/poisson_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/poisson_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/poisson_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/poisson_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/poisson_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/poisson_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/poisson_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/poisson_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/poisson_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/poisson_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/poisson_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/poisson_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/poisson_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/poisson_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/poisson_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/poisson_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/poisson_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/poisson_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/poisson_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/random_device/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/random_device/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/random_device/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/random_device/cons/token.cc
===================================================================
--- testsuite/26_numerics/random/random_device/cons/token.cc	(revision 216264)
+++ testsuite/26_numerics/random/random_device/cons/token.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/random_device/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/random_device/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/random_device/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/ranlux24.cc
===================================================================
--- testsuite/26_numerics/random/ranlux24.cc	(revision 216264)
+++ testsuite/26_numerics/random/ranlux24.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/ranlux24_base.cc
===================================================================
--- testsuite/26_numerics/random/ranlux24_base.cc	(revision 216264)
+++ testsuite/26_numerics/random/ranlux24_base.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/ranlux48.cc
===================================================================
--- testsuite/26_numerics/random/ranlux48.cc	(revision 216264)
+++ testsuite/26_numerics/random/ranlux48.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/ranlux48_base.cc
===================================================================
--- testsuite/26_numerics/random/ranlux48_base.cc	(revision 216264)
+++ testsuite/26_numerics/random/ranlux48_base.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/seed_seq/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/seed_seq/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/seed_seq/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-05  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/seed_seq/cons/initlist.cc
===================================================================
--- testsuite/26_numerics/random/seed_seq/cons/initlist.cc	(revision 216264)
+++ testsuite/26_numerics/random/seed_seq/cons/initlist.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-02-13  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/seed_seq/cons/range.cc
===================================================================
--- testsuite/26_numerics/random/seed_seq/cons/range.cc	(revision 216264)
+++ testsuite/26_numerics/random/seed_seq/cons/range.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-05  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/seed_seq/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/seed_seq/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/seed_seq/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-05  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/shuffle_order_engine/cons/base_copy.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/cons/base_copy.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/cons/base_copy.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/shuffle_order_engine/cons/base_move.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/cons/base_move.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/cons/base_move.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/shuffle_order_engine/cons/copy.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/cons/copy.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/cons/copy.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-02-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/shuffle_order_engine/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/shuffle_order_engine/cons/seed1.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/cons/seed1.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/cons/seed1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/shuffle_order_engine/cons/seed2.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/cons/seed2.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/cons/seed2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/shuffle_order_engine/cons/seed_seq.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/cons/seed_seq.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/cons/seed_seq.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-12-07  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/shuffle_order_engine/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/shuffle_order_engine/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/shuffle_order_engine/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/shuffle_order_engine/requirements/constants.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/requirements/constants.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/requirements/constants.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do link }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-09-29  Paolo Carlini <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/shuffle_order_engine/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/shuffle_order_engine/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/shuffle_order_engine/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/student_t_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/student_t_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/student_t_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/student_t_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/student_t_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/student_t_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/student_t_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/student_t_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/student_t_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/student_t_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/student_t_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/student_t_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/student_t_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/student_t_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/student_t_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/student_t_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/student_t_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/student_t_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/student_t_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/student_t_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/student_t_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/subtract_with_carry_engine/cons/copy.cc
===================================================================
--- testsuite/26_numerics/random/subtract_with_carry_engine/cons/copy.cc	(revision 216264)
+++ testsuite/26_numerics/random/subtract_with_carry_engine/cons/copy.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-02-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/subtract_with_carry_engine/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/subtract_with_carry_engine/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/subtract_with_carry_engine/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/subtract_with_carry_engine/cons/seed1.cc
===================================================================
--- testsuite/26_numerics/random/subtract_with_carry_engine/cons/seed1.cc	(revision 216264)
+++ testsuite/26_numerics/random/subtract_with_carry_engine/cons/seed1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/subtract_with_carry_engine/cons/seed2.cc
===================================================================
--- testsuite/26_numerics/random/subtract_with_carry_engine/cons/seed2.cc	(revision 216264)
+++ testsuite/26_numerics/random/subtract_with_carry_engine/cons/seed2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/subtract_with_carry_engine/cons/seed_seq.cc
===================================================================
--- testsuite/26_numerics/random/subtract_with_carry_engine/cons/seed_seq.cc	(revision 216264)
+++ testsuite/26_numerics/random/subtract_with_carry_engine/cons/seed_seq.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-02-01  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/subtract_with_carry_engine/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/subtract_with_carry_engine/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/subtract_with_carry_engine/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/subtract_with_carry_engine/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/subtract_with_carry_engine/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/subtract_with_carry_engine/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/subtract_with_carry_engine/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/subtract_with_carry_engine/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/subtract_with_carry_engine/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/subtract_with_carry_engine/requirements/constants.cc
===================================================================
--- testsuite/26_numerics/random/subtract_with_carry_engine/requirements/constants.cc	(revision 216264)
+++ testsuite/26_numerics/random/subtract_with_carry_engine/requirements/constants.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do link }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-09-29  Paolo Carlini <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/subtract_with_carry_engine/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/subtract_with_carry_engine/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/subtract_with_carry_engine/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/uniform_int_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/uniform_int_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_int_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/uniform_int_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/uniform_int_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_int_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/uniform_int_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/uniform_int_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_int_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/uniform_int_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/uniform_int_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_int_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/uniform_int_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/uniform_int_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_int_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/uniform_int_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/uniform_int_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_int_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/uniform_int_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/uniform_int_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_int_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/uniform_real_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/uniform_real_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_real_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/uniform_real_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/uniform_real_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_real_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/uniform_real_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/uniform_real_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_real_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/uniform_real_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/uniform_real_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_real_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/uniform_real_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/uniform_real_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_real_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/uniform_real_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/uniform_real_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_real_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/uniform_real_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/uniform_real_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/uniform_real_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/weibull_distribution/cons/default.cc
===================================================================
--- testsuite/26_numerics/random/weibull_distribution/cons/default.cc	(revision 216264)
+++ testsuite/26_numerics/random/weibull_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/weibull_distribution/cons/parms.cc
===================================================================
--- testsuite/26_numerics/random/weibull_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/26_numerics/random/weibull_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/weibull_distribution/operators/equal.cc
===================================================================
--- testsuite/26_numerics/random/weibull_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/26_numerics/random/weibull_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/weibull_distribution/operators/inequal.cc
===================================================================
--- testsuite/26_numerics/random/weibull_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/26_numerics/random/weibull_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/26_numerics/random/weibull_distribution/operators/serialize.cc
===================================================================
--- testsuite/26_numerics/random/weibull_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/26_numerics/random/weibull_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/26_numerics/random/weibull_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/26_numerics/random/weibull_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/26_numerics/random/weibull_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/26_numerics/random/weibull_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/26_numerics/random/weibull_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/26_numerics/random/weibull_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/28_regex/algorithms/regex_match/basic/string_01.cc
===================================================================
--- testsuite/28_regex/algorithms/regex_match/basic/string_01.cc	(revision 216264)
+++ testsuite/28_regex/algorithms/regex_match/basic/string_01.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-11  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/algorithms/regex_match/basic/string_range_00_03.cc
===================================================================
--- testsuite/28_regex/algorithms/regex_match/basic/string_range_00_03.cc	(revision 216264)
+++ testsuite/28_regex/algorithms/regex_match/basic/string_range_00_03.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-16  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/algorithms/regex_match/basic/string_range_01_03.cc
===================================================================
--- testsuite/28_regex/algorithms/regex_match/basic/string_range_01_03.cc	(revision 216264)
+++ testsuite/28_regex/algorithms/regex_match/basic/string_range_01_03.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-16  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/algorithms/regex_match/basic/string_range_02_03.cc
===================================================================
--- testsuite/28_regex/algorithms/regex_match/basic/string_range_02_03.cc	(revision 216264)
+++ testsuite/28_regex/algorithms/regex_match/basic/string_range_02_03.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-16  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/algorithms/regex_match/extended/cstring_plus.cc
===================================================================
--- testsuite/28_regex/algorithms/regex_match/extended/cstring_plus.cc	(revision 216264)
+++ testsuite/28_regex/algorithms/regex_match/extended/cstring_plus.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-21  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/algorithms/regex_match/extended/cstring_questionmark.cc
===================================================================
--- testsuite/28_regex/algorithms/regex_match/extended/cstring_questionmark.cc	(revision 216264)
+++ testsuite/28_regex/algorithms/regex_match/extended/cstring_questionmark.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-21  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/algorithms/regex_match/extended/string_any.cc
===================================================================
--- testsuite/28_regex/algorithms/regex_match/extended/string_any.cc	(revision 216264)
+++ testsuite/28_regex/algorithms/regex_match/extended/string_any.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-11  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/algorithms/regex_match/extended/string_range_00_03.cc
===================================================================
--- testsuite/28_regex/algorithms/regex_match/extended/string_range_00_03.cc	(revision 216264)
+++ testsuite/28_regex/algorithms/regex_match/extended/string_range_00_03.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-16  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/algorithms/regex_match/extended/string_range_01_03.cc
===================================================================
--- testsuite/28_regex/algorithms/regex_match/extended/string_range_01_03.cc	(revision 216264)
+++ testsuite/28_regex/algorithms/regex_match/extended/string_range_01_03.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-16  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/algorithms/regex_match/extended/string_range_02_03.cc
===================================================================
--- testsuite/28_regex/algorithms/regex_match/extended/string_range_02_03.cc	(revision 216264)
+++ testsuite/28_regex/algorithms/regex_match/extended/string_range_02_03.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-16  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/basic_regex/assign/char/cstring.cc
===================================================================
--- testsuite/28_regex/basic_regex/assign/char/cstring.cc	(revision 216264)
+++ testsuite/28_regex/basic_regex/assign/char/cstring.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2009-06-05  Stephen M. Webb  <stephen.webb@bregmasoft.ca>
 //
Index: testsuite/28_regex/basic_regex/ctors/basic/cstring.cc
===================================================================
--- testsuite/28_regex/basic_regex/ctors/basic/cstring.cc	(revision 216264)
+++ testsuite/28_regex/basic_regex/ctors/basic/cstring.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2007-03-12  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/basic_regex/ctors/basic/default.cc
===================================================================
--- testsuite/28_regex/basic_regex/ctors/basic/default.cc	(revision 216264)
+++ testsuite/28_regex/basic_regex/ctors/basic/default.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2007-03-12  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/basic_regex/ctors/basic/pstring_wchar_t.cc
===================================================================
--- testsuite/28_regex/basic_regex/ctors/basic/pstring_wchar_t.cc	(revision 216264)
+++ testsuite/28_regex/basic_regex/ctors/basic/pstring_wchar_t.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2007-03-12  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/basic_regex/ctors/char/cstring_awk.cc
===================================================================
--- testsuite/28_regex/basic_regex/ctors/char/cstring_awk.cc	(revision 216264)
+++ testsuite/28_regex/basic_regex/ctors/char/cstring_awk.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2007-03-12  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/basic_regex/ctors/char/cstring_ecma.cc
===================================================================
--- testsuite/28_regex/basic_regex/ctors/char/cstring_ecma.cc	(revision 216264)
+++ testsuite/28_regex/basic_regex/ctors/char/cstring_ecma.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2007-03-12  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/basic_regex/ctors/char/cstring_egrep.cc
===================================================================
--- testsuite/28_regex/basic_regex/ctors/char/cstring_egrep.cc	(revision 216264)
+++ testsuite/28_regex/basic_regex/ctors/char/cstring_egrep.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2007-03-12  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/basic_regex/ctors/char/cstring_grep.cc
===================================================================
--- testsuite/28_regex/basic_regex/ctors/char/cstring_grep.cc	(revision 216264)
+++ testsuite/28_regex/basic_regex/ctors/char/cstring_grep.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2007-03-12  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/basic_regex/ctors/copy_char.cc
===================================================================
--- testsuite/28_regex/basic_regex/ctors/copy_char.cc	(revision 216264)
+++ testsuite/28_regex/basic_regex/ctors/copy_char.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2010-07-07  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/basic_regex/ctors/extended/cstring.cc
===================================================================
--- testsuite/28_regex/basic_regex/ctors/extended/cstring.cc	(revision 216264)
+++ testsuite/28_regex/basic_regex/ctors/extended/cstring.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2007-03-12  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/basic_regex/ctors/wchar_t/range.cc
===================================================================
--- testsuite/28_regex/basic_regex/ctors/wchar_t/range.cc	(revision 216264)
+++ testsuite/28_regex/basic_regex/ctors/wchar_t/range.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2007-03-12  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/constants/error_type.cc
===================================================================
--- testsuite/28_regex/constants/error_type.cc	(revision 216264)
+++ testsuite/28_regex/constants/error_type.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 //
 // 2009-06-17  Stephen M. Webb  <stephen.webb@xandros.com>
Index: testsuite/28_regex/constants/match_flag_type.cc
===================================================================
--- testsuite/28_regex/constants/match_flag_type.cc	(revision 216264)
+++ testsuite/28_regex/constants/match_flag_type.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 //
 // 2009-06-17  Stephen M. Webb  <stephen.webb@xandros.com>
Index: testsuite/28_regex/constants/syntax_option_type.cc
===================================================================
--- testsuite/28_regex/constants/syntax_option_type.cc	(revision 216264)
+++ testsuite/28_regex/constants/syntax_option_type.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 //
 // 2009-06-17  Stephen M. Webb  <stephen.webb@xandros.com>
 //
Index: testsuite/28_regex/iterators/regex_iterator/ctors/char/default.cc
===================================================================
--- testsuite/28_regex/iterators/regex_iterator/ctors/char/default.cc	(revision 216264)
+++ testsuite/28_regex/iterators/regex_iterator/ctors/char/default.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-10  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/iterators/regex_iterator/ctors/wchar_t/default.cc
===================================================================
--- testsuite/28_regex/iterators/regex_iterator/ctors/wchar_t/default.cc	(revision 216264)
+++ testsuite/28_regex/iterators/regex_iterator/ctors/wchar_t/default.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-10  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/iterators/regex_iterator/typedefs.cc
===================================================================
--- testsuite/28_regex/iterators/regex_iterator/typedefs.cc	(revision 216264)
+++ testsuite/28_regex/iterators/regex_iterator/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-10  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/iterators/regex_token_iterator/ctors/char/default.cc
===================================================================
--- testsuite/28_regex/iterators/regex_token_iterator/ctors/char/default.cc	(revision 216264)
+++ testsuite/28_regex/iterators/regex_token_iterator/ctors/char/default.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-10  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/iterators/regex_token_iterator/typedefs.cc
===================================================================
--- testsuite/28_regex/iterators/regex_token_iterator/typedefs.cc	(revision 216264)
+++ testsuite/28_regex/iterators/regex_token_iterator/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-10  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/match_results/ctors/char/default.cc
===================================================================
--- testsuite/28_regex/match_results/ctors/char/default.cc	(revision 216264)
+++ testsuite/28_regex/match_results/ctors/char/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2009-06-10  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/match_results/ctors/wchar_t/default.cc
===================================================================
--- testsuite/28_regex/match_results/ctors/wchar_t/default.cc	(revision 216264)
+++ testsuite/28_regex/match_results/ctors/wchar_t/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2009-06-05  Stephen M. Webb  <stephen.webb@bregmasoft.com>
 //
Index: testsuite/28_regex/match_results/typedefs.cc
===================================================================
--- testsuite/28_regex/match_results/typedefs.cc	(revision 216264)
+++ testsuite/28_regex/match_results/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-10  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/regex_error/base.cc
===================================================================
--- testsuite/28_regex/regex_error/base.cc	(revision 216264)
+++ testsuite/28_regex/regex_error/base.cc	(working copy)
@@ -17,7 +17,7 @@
 
 // 28.6 [re.badexp]
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <regex>
 
Index: testsuite/28_regex/regex_error/regex_error.cc
===================================================================
--- testsuite/28_regex/regex_error/regex_error.cc	(revision 216264)
+++ testsuite/28_regex/regex_error/regex_error.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 //
 // 2009-06-17  Stephen M. Webb  <stephen.webb@xandros.com>
 //
Index: testsuite/28_regex/requirements/typedefs.cc
===================================================================
--- testsuite/28_regex/requirements/typedefs.cc	(revision 216264)
+++ testsuite/28_regex/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-02-17  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/sub_match/cast_char.cc
===================================================================
--- testsuite/28_regex/sub_match/cast_char.cc	(revision 216264)
+++ testsuite/28_regex/sub_match/cast_char.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-09  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/sub_match/cast_wchar_t.cc
===================================================================
--- testsuite/28_regex/sub_match/cast_wchar_t.cc	(revision 216264)
+++ testsuite/28_regex/sub_match/cast_wchar_t.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-09  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/sub_match/length.cc
===================================================================
--- testsuite/28_regex/sub_match/length.cc	(revision 216264)
+++ testsuite/28_regex/sub_match/length.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-09  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/sub_match/typedefs.cc
===================================================================
--- testsuite/28_regex/sub_match/typedefs.cc	(revision 216264)
+++ testsuite/28_regex/sub_match/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-07  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/traits/char/isctype.cc
===================================================================
--- testsuite/28_regex/traits/char/isctype.cc	(revision 216264)
+++ testsuite/28_regex/traits/char/isctype.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-23  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/traits/char/length.cc
===================================================================
--- testsuite/28_regex/traits/char/length.cc	(revision 216264)
+++ testsuite/28_regex/traits/char/length.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-02-17  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/traits/char/lookup_classname.cc
===================================================================
--- testsuite/28_regex/traits/char/lookup_classname.cc	(revision 216264)
+++ testsuite/28_regex/traits/char/lookup_classname.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-23  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/traits/char/lookup_collatename.cc
===================================================================
--- testsuite/28_regex/traits/char/lookup_collatename.cc	(revision 216264)
+++ testsuite/28_regex/traits/char/lookup_collatename.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-06-23  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/traits/char/transform.cc
===================================================================
--- testsuite/28_regex/traits/char/transform.cc	(revision 216264)
+++ testsuite/28_regex/traits/char/transform.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-02-17  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/traits/char/transform_primary.cc
===================================================================
--- testsuite/28_regex/traits/char/transform_primary.cc	(revision 216264)
+++ testsuite/28_regex/traits/char/transform_primary.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run }
 
 //
Index: testsuite/28_regex/traits/char/translate.cc
===================================================================
--- testsuite/28_regex/traits/char/translate.cc	(revision 216264)
+++ testsuite/28_regex/traits/char/translate.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg_do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-02-17  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/traits/wchar_t/isctype.cc
===================================================================
--- testsuite/28_regex/traits/wchar_t/isctype.cc	(revision 216264)
+++ testsuite/28_regex/traits/wchar_t/isctype.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
 //
Index: testsuite/28_regex/traits/wchar_t/length.cc
===================================================================
--- testsuite/28_regex/traits/wchar_t/length.cc	(revision 216264)
+++ testsuite/28_regex/traits/wchar_t/length.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-02-17  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/traits/wchar_t/lookup_classname.cc
===================================================================
--- testsuite/28_regex/traits/wchar_t/lookup_classname.cc	(revision 216264)
+++ testsuite/28_regex/traits/wchar_t/lookup_classname.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
 //
Index: testsuite/28_regex/traits/wchar_t/lookup_collatename.cc
===================================================================
--- testsuite/28_regex/traits/wchar_t/lookup_collatename.cc	(revision 216264)
+++ testsuite/28_regex/traits/wchar_t/lookup_collatename.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
Index: testsuite/28_regex/traits/wchar_t/transform.cc
===================================================================
--- testsuite/28_regex/traits/wchar_t/transform.cc	(revision 216264)
+++ testsuite/28_regex/traits/wchar_t/transform.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-02-17  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/28_regex/traits/wchar_t/transform_primary.cc
===================================================================
--- testsuite/28_regex/traits/wchar_t/transform_primary.cc	(revision 216264)
+++ testsuite/28_regex/traits/wchar_t/transform_primary.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do run }
 
 //
Index: testsuite/28_regex/traits/wchar_t/translate.cc
===================================================================
--- testsuite/28_regex/traits/wchar_t/translate.cc	(revision 216264)
+++ testsuite/28_regex/traits/wchar_t/translate.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do run }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 
 //
 // 2010-02-17  Stephen M. Webb <stephen.webb@bregmasoft.ca>
Index: testsuite/ext/random/arcsine_distribution/cons/default.cc
===================================================================
--- testsuite/ext/random/arcsine_distribution/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/arcsine_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/arcsine_distribution/cons/parms.cc
===================================================================
--- testsuite/ext/random/arcsine_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/ext/random/arcsine_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/arcsine_distribution/operators/equal.cc
===================================================================
--- testsuite/ext/random/arcsine_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/arcsine_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/arcsine_distribution/operators/inequal.cc
===================================================================
--- testsuite/ext/random/arcsine_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/arcsine_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/arcsine_distribution/operators/serialize.cc
===================================================================
--- testsuite/ext/random/arcsine_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/arcsine_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/arcsine_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/ext/random/arcsine_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/ext/random/arcsine_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/ext/random/arcsine_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/ext/random/arcsine_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/ext/random/arcsine_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/beta_distribution/cons/default.cc
===================================================================
--- testsuite/ext/random/beta_distribution/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/beta_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/beta_distribution/cons/parms.cc
===================================================================
--- testsuite/ext/random/beta_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/ext/random/beta_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/beta_distribution/operators/equal.cc
===================================================================
--- testsuite/ext/random/beta_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/beta_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/ext/random/beta_distribution/operators/inequal.cc
===================================================================
--- testsuite/ext/random/beta_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/beta_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/ext/random/beta_distribution/operators/serialize.cc
===================================================================
--- testsuite/ext/random/beta_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/beta_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/beta_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/ext/random/beta_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/ext/random/beta_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/ext/random/beta_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/ext/random/beta_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/ext/random/beta_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/hoyt_distribution/cons/default.cc
===================================================================
--- testsuite/ext/random/hoyt_distribution/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/hoyt_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/hoyt_distribution/cons/parms.cc
===================================================================
--- testsuite/ext/random/hoyt_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/ext/random/hoyt_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/hoyt_distribution/operators/equal.cc
===================================================================
--- testsuite/ext/random/hoyt_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/hoyt_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/hoyt_distribution/operators/inequal.cc
===================================================================
--- testsuite/ext/random/hoyt_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/hoyt_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/hoyt_distribution/operators/serialize.cc
===================================================================
--- testsuite/ext/random/hoyt_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/hoyt_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/hoyt_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/ext/random/hoyt_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/ext/random/hoyt_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/ext/random/hoyt_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/ext/random/hoyt_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/ext/random/hoyt_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-10-12  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/k_distribution/cons/default.cc
===================================================================
--- testsuite/ext/random/k_distribution/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/k_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/k_distribution/cons/parms.cc
===================================================================
--- testsuite/ext/random/k_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/ext/random/k_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/k_distribution/operators/equal.cc
===================================================================
--- testsuite/ext/random/k_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/k_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-24  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/k_distribution/operators/inequal.cc
===================================================================
--- testsuite/ext/random/k_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/k_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-24  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/k_distribution/operators/serialize.cc
===================================================================
--- testsuite/ext/random/k_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/k_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-24  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/k_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/ext/random/k_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/ext/random/k_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/ext/random/k_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/ext/random/k_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/ext/random/k_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/logistic_distribution/cons/default.cc
===================================================================
--- testsuite/ext/random/logistic_distribution/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/logistic_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2014-07-11  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/logistic_distribution/cons/parms.cc
===================================================================
--- testsuite/ext/random/logistic_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/ext/random/logistic_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2014-07-11  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/logistic_distribution/operators/equal.cc
===================================================================
--- testsuite/ext/random/logistic_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/logistic_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2014-07-11  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/logistic_distribution/operators/inequal.cc
===================================================================
--- testsuite/ext/random/logistic_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/logistic_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2014-07-11  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/logistic_distribution/operators/serialize.cc
===================================================================
--- testsuite/ext/random/logistic_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/logistic_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2014-07-11  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/logistic_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/ext/random/logistic_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/ext/random/logistic_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2014-07-11  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/nakagami_distribution/cons/default.cc
===================================================================
--- testsuite/ext/random/nakagami_distribution/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/nakagami_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/nakagami_distribution/cons/parms.cc
===================================================================
--- testsuite/ext/random/nakagami_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/ext/random/nakagami_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/nakagami_distribution/operators/equal.cc
===================================================================
--- testsuite/ext/random/nakagami_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/nakagami_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-18  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/nakagami_distribution/operators/inequal.cc
===================================================================
--- testsuite/ext/random/nakagami_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/nakagami_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-18  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/nakagami_distribution/operators/serialize.cc
===================================================================
--- testsuite/ext/random/nakagami_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/nakagami_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-18  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/nakagami_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/ext/random/nakagami_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/ext/random/nakagami_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/ext/random/nakagami_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/ext/random/nakagami_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/ext/random/nakagami_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-18  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/normal_mv_distribution/cons/default.cc
===================================================================
--- testsuite/ext/random/normal_mv_distribution/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/normal_mv_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/normal_mv_distribution/cons/parms.cc
===================================================================
--- testsuite/ext/random/normal_mv_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/ext/random/normal_mv_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/normal_mv_distribution/operators/equal.cc
===================================================================
--- testsuite/ext/random/normal_mv_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/normal_mv_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/ext/random/normal_mv_distribution/operators/inequal.cc
===================================================================
--- testsuite/ext/random/normal_mv_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/normal_mv_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/ext/random/normal_mv_distribution/operators/serialize.cc
===================================================================
--- testsuite/ext/random/normal_mv_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/normal_mv_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/normal_mv_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/ext/random/normal_mv_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/ext/random/normal_mv_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/ext/random/normal_mv_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/ext/random/normal_mv_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/ext/random/normal_mv_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/pareto_distribution/cons/default.cc
===================================================================
--- testsuite/ext/random/pareto_distribution/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/pareto_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-21  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/pareto_distribution/cons/parms.cc
===================================================================
--- testsuite/ext/random/pareto_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/ext/random/pareto_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-21  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/pareto_distribution/operators/equal.cc
===================================================================
--- testsuite/ext/random/pareto_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/pareto_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-21  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/pareto_distribution/operators/inequal.cc
===================================================================
--- testsuite/ext/random/pareto_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/pareto_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-21  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/pareto_distribution/operators/serialize.cc
===================================================================
--- testsuite/ext/random/pareto_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/pareto_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-21  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/pareto_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/ext/random/pareto_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/ext/random/pareto_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/ext/random/pareto_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/ext/random/pareto_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/ext/random/pareto_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-09-21  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/rice_distribution/cons/default.cc
===================================================================
--- testsuite/ext/random/rice_distribution/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/rice_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-01-28  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/rice_distribution/cons/parms.cc
===================================================================
--- testsuite/ext/random/rice_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/ext/random/rice_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-01-28  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/rice_distribution/operators/equal.cc
===================================================================
--- testsuite/ext/random/rice_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/rice_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-01-28  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/rice_distribution/operators/inequal.cc
===================================================================
--- testsuite/ext/random/rice_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/rice_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-01-28  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/rice_distribution/operators/serialize.cc
===================================================================
--- testsuite/ext/random/rice_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/rice_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-01-28  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/rice_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/ext/random/rice_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/ext/random/rice_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2012-2014 Free Software Foundation, Inc.
Index: testsuite/ext/random/rice_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/ext/random/rice_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/ext/random/rice_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2012-01-28  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/copy.cc
===================================================================
--- testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/copy.cc	(revision 216264)
+++ testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/copy.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 // { dg-require-little-endian "" }
 //
Index: testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/default.cc
===================================================================
--- testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 // { dg-require-little-endian "" }
 //
Index: testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/seed1.cc
===================================================================
--- testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/seed1.cc	(revision 216264)
+++ testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/seed1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 // { dg-require-little-endian "" }
 //
Index: testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/seed2.cc
===================================================================
--- testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/seed2.cc	(revision 216264)
+++ testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/seed2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 // { dg-require-little-endian "" }
 //
Index: testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/seed_seq.cc
===================================================================
--- testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/seed_seq.cc	(revision 216264)
+++ testsuite/ext/random/simd_fast_mersenne_twister_engine/cons/seed_seq.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 // { dg-require-little-endian "" }
 //
Index: testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/equal.cc
===================================================================
--- testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 // { dg-require-little-endian "" }
 //
Index: testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/inequal.cc
===================================================================
--- testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 // { dg-require-little-endian "" }
 //
Index: testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/serialize.cc
===================================================================
--- testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/simd_fast_mersenne_twister_engine/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 // { dg-require-little-endian "" }
 //
Index: testsuite/ext/random/triangular_distribution/cons/default.cc
===================================================================
--- testsuite/ext/random/triangular_distribution/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/triangular_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/triangular_distribution/cons/parms.cc
===================================================================
--- testsuite/ext/random/triangular_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/ext/random/triangular_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/triangular_distribution/operators/equal.cc
===================================================================
--- testsuite/ext/random/triangular_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/triangular_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/ext/random/triangular_distribution/operators/inequal.cc
===================================================================
--- testsuite/ext/random/triangular_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/triangular_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/ext/random/triangular_distribution/operators/serialize.cc
===================================================================
--- testsuite/ext/random/triangular_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/triangular_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/triangular_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/ext/random/triangular_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/ext/random/triangular_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/ext/random/triangular_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/ext/random/triangular_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/ext/random/triangular_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/von_mises_distribution/cons/default.cc
===================================================================
--- testsuite/ext/random/von_mises_distribution/cons/default.cc	(revision 216264)
+++ testsuite/ext/random/von_mises_distribution/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/von_mises_distribution/cons/parms.cc
===================================================================
--- testsuite/ext/random/von_mises_distribution/cons/parms.cc	(revision 216264)
+++ testsuite/ext/random/von_mises_distribution/cons/parms.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/ext/random/von_mises_distribution/operators/equal.cc
===================================================================
--- testsuite/ext/random/von_mises_distribution/operators/equal.cc	(revision 216264)
+++ testsuite/ext/random/von_mises_distribution/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/ext/random/von_mises_distribution/operators/inequal.cc
===================================================================
--- testsuite/ext/random/von_mises_distribution/operators/inequal.cc	(revision 216264)
+++ testsuite/ext/random/von_mises_distribution/operators/inequal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2010-03-16  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/ext/random/von_mises_distribution/operators/serialize.cc
===================================================================
--- testsuite/ext/random/von_mises_distribution/operators/serialize.cc	(revision 216264)
+++ testsuite/ext/random/von_mises_distribution/operators/serialize.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2009-08-14  Edward M. Smith-Rowland  <3dw4rd@verizon.net>
Index: testsuite/ext/random/von_mises_distribution/requirements/explicit_instantiation/1.cc
===================================================================
--- testsuite/ext/random/von_mises_distribution/requirements/explicit_instantiation/1.cc	(revision 216264)
+++ testsuite/ext/random/von_mises_distribution/requirements/explicit_instantiation/1.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
Index: testsuite/ext/random/von_mises_distribution/requirements/typedefs.cc
===================================================================
--- testsuite/ext/random/von_mises_distribution/requirements/typedefs.cc	(revision 216264)
+++ testsuite/ext/random/von_mises_distribution/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=c++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 //
 // 2008-11-24  Edward M. Smith-Rowland <3dw4rd@verizon.net>
Index: testsuite/performance/23_containers/insert/54075.cc
===================================================================
--- testsuite/performance/23_containers/insert/54075.cc	(revision 216264)
+++ testsuite/performance/23_containers/insert/54075.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <testsuite_performance.h>
 #include <random>
Index: testsuite/performance/23_containers/insert/unordered_set.cc
===================================================================
--- testsuite/performance/23_containers/insert/unordered_set.cc	(revision 216264)
+++ testsuite/performance/23_containers/insert/unordered_set.cc	(working copy)
@@ -15,7 +15,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-options "-std=c++11" }
+// { dg-options "-std=gnu++11" }
 
 #include <testsuite_performance.h>
 #include <sstream>

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [v3] Minimally exercise the other alias_decls in <type_traits>
  2014-10-15 10:51     ` Paolo Carlini
  2014-10-15 15:47       ` Paolo Carlini
@ 2014-10-15 17:35       ` Mike Stump
  1 sibling, 0 replies; 12+ messages in thread
From: Mike Stump @ 2014-10-15 17:35 UTC (permalink / raw)
  To: Paolo Carlini; +Cc: Jonathan Wakely, gcc-patches, libstdc++

On Oct 15, 2014, at 3:30 AM, Paolo Carlini <paolo.carlini@oracle.com> wrote:
> On 10/15/2014 11:50 AM, Paolo Carlini wrote:
>>> We might also want to consider a global s/gnu++0x/gnu++11/ some day.
>> And s/gnu++1y/gnu++14 of course ;)
> I'm going to commit the below.

Yes please, thanks.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [v3] Minimally exercise the other alias_decls in <type_traits>
  2014-10-15 15:47       ` Paolo Carlini
@ 2014-10-15 17:36         ` Mike Stump
  2014-10-15 17:50           ` Paolo Carlini
  0 siblings, 1 reply; 12+ messages in thread
From: Mike Stump @ 2014-10-15 17:36 UTC (permalink / raw)
  To: Paolo Carlini; +Cc: Jonathan Wakely, gcc-patches, libstdc++

On Oct 15, 2014, at 8:41 AM, Paolo Carlini <paolo.carlini@oracle.com> wrote:
> ... the below replaces -std=c++0x and -std=c++11 with -std=gnu++11.

Seems odd to go from c++11 -> gnu++11.  Why?

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [v3] Minimally exercise the other alias_decls in <type_traits>
  2014-10-15  9:48   ` Jonathan Wakely
@ 2014-10-15 17:48     ` Mike Stump
  0 siblings, 0 replies; 12+ messages in thread
From: Mike Stump @ 2014-10-15 17:48 UTC (permalink / raw)
  To: Jonathan Wakely; +Cc: Paolo Carlini, gcc-patches, libstdc++

On Oct 15, 2014, at 2:45 AM, Jonathan Wakely <jwakely@redhat.com> wrote:
> On 15/10/14 10:44 +0100, Jonathan Wakely wrote:
>> We might also want to consider a global s/gnu++0x/gnu++11/ some day.
> 
> One reason for doing that replacement is that I keep copying existing
> tests and then having to change it, and I'm lazy!

Lazy is fine, doing 1000 instead of 500 is only a hair more work when we do them all in mass.  I like constancy, so I actually prefer not changing them (til all are changed).

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [v3] Minimally exercise the other alias_decls in <type_traits>
  2014-10-15 17:36         ` Mike Stump
@ 2014-10-15 17:50           ` Paolo Carlini
  0 siblings, 0 replies; 12+ messages in thread
From: Paolo Carlini @ 2014-10-15 17:50 UTC (permalink / raw)
  To: Mike Stump; +Cc: Jonathan Wakely, gcc-patches, libstdc++


On 10/15/2014 07:35 PM, Mike Stump wrote:
> On Oct 15, 2014, at 8:41 AM, Paolo Carlini <paolo.carlini@oracle.com> wrote:
>> ... the below replaces -std=c++0x and -std=c++11 with -std=gnu++11.
> Seems odd to go from c++11 -> gnu++11.  Why?
Because all the new testcases we are committing use -std=gnu++11, which 
is right, because the current default is -std=gnu++98, *not* -std=c++98.

Paolo.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [v3] Minimally exercise the other alias_decls in <type_traits>
  2014-10-15  9:45 ` Jonathan Wakely
  2014-10-15  9:48   ` Jonathan Wakely
  2014-10-15  9:50   ` Paolo Carlini
@ 2014-10-15 18:29   ` Paolo Carlini
  2014-10-16  8:14     ` Paolo Carlini
  2 siblings, 1 reply; 12+ messages in thread
From: Paolo Carlini @ 2014-10-15 18:29 UTC (permalink / raw)
  To: gcc-patches

[-- Attachment #1: Type: text/plain, Size: 213 bytes --]

Hi,

On 10/15/2014 11:44 AM, Jonathan Wakely wrote:
> We might also want to consider a global s/gnu++0x/gnu++11/ some day.
The below takes care of 17-19, the rest over the next days...

Paolo.

//////////////////

[-- Attachment #2: CL_c0x_1 --]
[-- Type: text/plain, Size: 4796 bytes --]

2014-10-15  Paolo Carlini  <paolo.carlini@oracle.com>

	* testsuite/17_intro/freestanding.cc: Prefer -std=gnu++11.
	* testsuite/17_intro/headers/c++200x/42319.cc: Likewise.
	* testsuite/17_intro/headers/c++200x/all_no_exceptions.cc: Likewise.
	* testsuite/17_intro/headers/c++200x/all_no_rtti.cc: Likewise.
	* testsuite/17_intro/headers/c++200x/all_pedantic_errors.cc: Likewise.
	* testsuite/17_intro/headers/c++200x/operator_names.cc: Likewise.
	* testsuite/17_intro/headers/c++200x/stdc++.cc: Likewise.
	* testsuite/17_intro/headers/c++200x/stdc++_multiple_inclusion.cc:
	Likewise.
	* testsuite/17_intro/using_namespace_std_tr1_neg.cc: Likewise.
	* testsuite/18_support/exception_ptr/40296.cc: Likewise.
	* testsuite/18_support/exception_ptr/current_exception.cc: Likewise.
	* testsuite/18_support/exception_ptr/lifespan.cc: Likewise.
	* testsuite/18_support/exception_ptr/make_exception_ptr.cc: Likewise.
	* testsuite/18_support/exception_ptr/move.cc: Likewise.
	* testsuite/18_support/exception_ptr/requirements.cc: Likewise.
	* testsuite/18_support/exception_ptr/requirements_neg.cc: Likewise.
	* testsuite/18_support/exception_ptr/rethrow_exception.cc: Likewise.
	* testsuite/18_support/headers/cstdint/types_std_c++0x.cc: Likewise.
	* testsuite/18_support/initializer_list/constexpr.cc: Likewise.
	* testsuite/18_support/initializer_list/range_access.cc: Likewise.
	* testsuite/18_support/initializer_list/requirements/
	constexpr_functions.cc: Likewise.
	* testsuite/18_support/initializer_list/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/18_support/initializer_list/requirements/typedefs.cc: 
	Likewise.
	* testsuite/18_support/nested_exception/51438.cc: Likewise.
	* testsuite/18_support/nested_exception/cons.cc: Likewise.
	* testsuite/18_support/nested_exception/nested_ptr.cc: Likewise.
	* testsuite/18_support/nested_exception/rethrow_if_nested.cc: Likewise.
	* testsuite/18_support/nested_exception/rethrow_nested.cc: Likewise.
	* testsuite/18_support/nested_exception/throw_with_nested.cc: Likewise.
	* testsuite/18_support/numeric_limits/40856.cc: Likewise.
	* testsuite/18_support/numeric_limits/char16_32_t.cc: Likewise.
	* testsuite/18_support/numeric_limits/cons/default_c++0x.cc: Likewise.
	* testsuite/18_support/numeric_limits/dr559.cc: Likewise.
	* testsuite/18_support/numeric_limits/lowest.cc: Likewise.
	* testsuite/18_support/numeric_limits/max_digits10.cc: Likewise.
	* testsuite/18_support/numeric_limits/requirements/
	constexpr_data.cc: Likewise.
	* testsuite/18_support/numeric_limits/requirements/
	constexpr_functions.cc: Likewise.
	* testsuite/18_support/type_info/fundamental.cc: Likewise.
	* testsuite/18_support/type_info/hash_code.cc: Likewise.
	* testsuite/19_diagnostics/error_category/cons/copy_neg.cc: Likewise.
	* testsuite/19_diagnostics/error_category/cons/default.cc: Likewise.
	* testsuite/19_diagnostics/error_category/operators/equal.cc: Likewise.
	* testsuite/19_diagnostics/error_category/operators/not_equal.cc: 
	Likewise.
	* testsuite/19_diagnostics/error_code/cons/1.cc: Likewise.
	* testsuite/19_diagnostics/error_code/cons/39882.cc: Likewise.
	* testsuite/19_diagnostics/error_code/modifiers/39882.cc: Likewise.
	* testsuite/19_diagnostics/error_code/operators/bool.cc: Likewise.
	* testsuite/19_diagnostics/error_code/operators/bool_neg.cc: Likewise.
	* testsuite/19_diagnostics/error_code/operators/equal.cc: Likewise.
	* testsuite/19_diagnostics/error_code/operators/not_equal.cc: Likewise.
	* testsuite/19_diagnostics/error_condition/cons/1.cc: Likewise.
	* testsuite/19_diagnostics/error_condition/cons/39881.cc: Likewise.
	* testsuite/19_diagnostics/error_condition/modifiers/39881.cc: Likewise.
	* testsuite/19_diagnostics/error_condition/operators/bool.cc: Likewise.
	* testsuite/19_diagnostics/error_condition/operators/bool_neg.cc: 
	Likewise.
	* testsuite/19_diagnostics/error_condition/operators/equal.cc: Likewise.
	* testsuite/19_diagnostics/error_condition/operators/not_equal.cc: 
	Likewise.
	* testsuite/19_diagnostics/headers/system_error/34538.cc: Likewise.
	* testsuite/19_diagnostics/headers/system_error/errc_std_c++0x.cc: 
	Likewise.
	* testsuite/19_diagnostics/headers/system_error/types_std_c++0x.cc: 
	Likewise.
	* testsuite/19_diagnostics/logic_error/what-3.cc: Likewise.
	* testsuite/19_diagnostics/system_error/39880.cc: Likewise.
	* testsuite/19_diagnostics/system_error/cons-1.cc: Likewise.
	* testsuite/19_diagnostics/system_error/cons_virtual_derivation.cc: 
	Likewise.
	* testsuite/19_diagnostics/system_error/what-1.cc: Likewise.
	* testsuite/19_diagnostics/system_error/what-2.cc: Likewise.
	* testsuite/19_diagnostics/system_error/what-3.cc: Likewise.
	* testsuite/19_diagnostics/system_error/what-4.cc: Likewise.
	* testsuite/19_diagnostics/system_error/what-big.cc: Likewise.

[-- Attachment #3: patch_c0x_1 --]
[-- Type: text/plain, Size: 31900 bytes --]

Index: testsuite/17_intro/freestanding.cc
===================================================================
--- testsuite/17_intro/freestanding.cc	(revision 216278)
+++ testsuite/17_intro/freestanding.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-x c -std=gnu++0x -lsupc++ -fvtable-verify=none" }
+// { dg-options "-x c -std=gnu++11 -lsupc++ -fvtable-verify=none" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
 //
Index: testsuite/17_intro/headers/c++200x/42319.cc
===================================================================
--- testsuite/17_intro/headers/c++200x/42319.cc	(revision 216278)
+++ testsuite/17_intro/headers/c++200x/42319.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
 //
Index: testsuite/17_intro/headers/c++200x/all_no_exceptions.cc
===================================================================
--- testsuite/17_intro/headers/c++200x/all_no_exceptions.cc	(revision 216278)
+++ testsuite/17_intro/headers/c++200x/all_no_exceptions.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x -fno-exceptions" }
+// { dg-options "-std=gnu++11 -fno-exceptions" }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
 //
Index: testsuite/17_intro/headers/c++200x/all_no_rtti.cc
===================================================================
--- testsuite/17_intro/headers/c++200x/all_no_rtti.cc	(revision 216278)
+++ testsuite/17_intro/headers/c++200x/all_no_rtti.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x -fno-rtti" }
+// { dg-options "-std=gnu++11 -fno-rtti" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
 //
Index: testsuite/17_intro/headers/c++200x/all_pedantic_errors.cc
===================================================================
--- testsuite/17_intro/headers/c++200x/all_pedantic_errors.cc	(revision 216278)
+++ testsuite/17_intro/headers/c++200x/all_pedantic_errors.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x -pedantic-errors" }
+// { dg-options "-std=gnu++11 -pedantic-errors" }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
 //
Index: testsuite/17_intro/headers/c++200x/operator_names.cc
===================================================================
--- testsuite/17_intro/headers/c++200x/operator_names.cc	(revision 216278)
+++ testsuite/17_intro/headers/c++200x/operator_names.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x -fno-operator-names" }
+// { dg-options "-std=gnu++11 -fno-operator-names" }
 
 // Copyright (C) 2011-2014 Free Software Foundation, Inc.
 //
Index: testsuite/17_intro/headers/c++200x/stdc++.cc
===================================================================
--- testsuite/17_intro/headers/c++200x/stdc++.cc	(revision 216278)
+++ testsuite/17_intro/headers/c++200x/stdc++.cc	(working copy)
@@ -1,6 +1,6 @@
 // FreeBSD wants warning clean system headers:
 // { dg-options "-Wall -Wsystem-headers" { target *-*-freebsd* *-*-dragonfly* } }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
Index: testsuite/17_intro/headers/c++200x/stdc++_multiple_inclusion.cc
===================================================================
--- testsuite/17_intro/headers/c++200x/stdc++_multiple_inclusion.cc	(revision 216278)
+++ testsuite/17_intro/headers/c++200x/stdc++_multiple_inclusion.cc	(working copy)
@@ -1,6 +1,6 @@
 // FreeBSD wants warning clean system headers:
 // { dg-options "-Wall -Wsystem-headers" { target *-*-freebsd* *-*-dragonfly* } }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
Index: testsuite/17_intro/using_namespace_std_tr1_neg.cc
===================================================================
--- testsuite/17_intro/using_namespace_std_tr1_neg.cc	(revision 216278)
+++ testsuite/17_intro/using_namespace_std_tr1_neg.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/exception_ptr/40296.cc
===================================================================
--- testsuite/18_support/exception_ptr/40296.cc	(revision 216278)
+++ testsuite/18_support/exception_ptr/40296.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/exception_ptr/current_exception.cc
===================================================================
--- testsuite/18_support/exception_ptr/current_exception.cc	(revision 216278)
+++ testsuite/18_support/exception_ptr/current_exception.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // 2008-05-25  Sebastian Redl  <sebastian.redl@getdesigned.at>
Index: testsuite/18_support/exception_ptr/lifespan.cc
===================================================================
--- testsuite/18_support/exception_ptr/lifespan.cc	(revision 216278)
+++ testsuite/18_support/exception_ptr/lifespan.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // 2008-05-25  Sebastian Redl  <sebastian.redl@getdesigned.at>
Index: testsuite/18_support/exception_ptr/make_exception_ptr.cc
===================================================================
--- testsuite/18_support/exception_ptr/make_exception_ptr.cc	(revision 216278)
+++ testsuite/18_support/exception_ptr/make_exception_ptr.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/exception_ptr/move.cc
===================================================================
--- testsuite/18_support/exception_ptr/move.cc	(revision 216278)
+++ testsuite/18_support/exception_ptr/move.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/exception_ptr/requirements.cc
===================================================================
--- testsuite/18_support/exception_ptr/requirements.cc	(revision 216278)
+++ testsuite/18_support/exception_ptr/requirements.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/exception_ptr/requirements_neg.cc
===================================================================
--- testsuite/18_support/exception_ptr/requirements_neg.cc	(revision 216278)
+++ testsuite/18_support/exception_ptr/requirements_neg.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/exception_ptr/rethrow_exception.cc
===================================================================
--- testsuite/18_support/exception_ptr/rethrow_exception.cc	(revision 216278)
+++ testsuite/18_support/exception_ptr/rethrow_exception.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // 2008-05-25  Sebastian Redl  <sebastian.redl@getdesigned.at>
Index: testsuite/18_support/headers/cstdint/types_std_c++0x.cc
===================================================================
--- testsuite/18_support/headers/cstdint/types_std_c++0x.cc	(revision 216278)
+++ testsuite/18_support/headers/cstdint/types_std_c++0x.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/initializer_list/constexpr.cc
===================================================================
--- testsuite/18_support/initializer_list/constexpr.cc	(revision 216278)
+++ testsuite/18_support/initializer_list/constexpr.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
 //
Index: testsuite/18_support/initializer_list/range_access.cc
===================================================================
--- testsuite/18_support/initializer_list/range_access.cc	(revision 216278)
+++ testsuite/18_support/initializer_list/range_access.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
 //
Index: testsuite/18_support/initializer_list/requirements/constexpr_functions.cc
===================================================================
--- testsuite/18_support/initializer_list/requirements/constexpr_functions.cc	(revision 216278)
+++ testsuite/18_support/initializer_list/requirements/constexpr_functions.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
 //
Index: testsuite/18_support/initializer_list/requirements/explicit_instantiation.cc
===================================================================
--- testsuite/18_support/initializer_list/requirements/explicit_instantiation.cc	(revision 216278)
+++ testsuite/18_support/initializer_list/requirements/explicit_instantiation.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // 2009-05-27 Benjamin Kosnik <bkoz@redhat.com>
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/initializer_list/requirements/typedefs.cc
===================================================================
--- testsuite/18_support/initializer_list/requirements/typedefs.cc	(revision 216278)
+++ testsuite/18_support/initializer_list/requirements/typedefs.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // 2009-05-27 Benjamin Kosnik <bkoz@redhat.com>
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/nested_exception/51438.cc
===================================================================
--- testsuite/18_support/nested_exception/51438.cc	(revision 216278)
+++ testsuite/18_support/nested_exception/51438.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // Copyright (C) 2011-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/nested_exception/cons.cc
===================================================================
--- testsuite/18_support/nested_exception/cons.cc	(revision 216278)
+++ testsuite/18_support/nested_exception/cons.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/nested_exception/nested_ptr.cc
===================================================================
--- testsuite/18_support/nested_exception/nested_ptr.cc	(revision 216278)
+++ testsuite/18_support/nested_exception/nested_ptr.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/nested_exception/rethrow_if_nested.cc
===================================================================
--- testsuite/18_support/nested_exception/rethrow_if_nested.cc	(revision 216278)
+++ testsuite/18_support/nested_exception/rethrow_if_nested.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/nested_exception/rethrow_nested.cc
===================================================================
--- testsuite/18_support/nested_exception/rethrow_nested.cc	(revision 216278)
+++ testsuite/18_support/nested_exception/rethrow_nested.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/nested_exception/throw_with_nested.cc
===================================================================
--- testsuite/18_support/nested_exception/throw_with_nested.cc	(revision 216278)
+++ testsuite/18_support/nested_exception/throw_with_nested.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-atomic-builtins "" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/numeric_limits/40856.cc
===================================================================
--- testsuite/18_support/numeric_limits/40856.cc	(revision 216278)
+++ testsuite/18_support/numeric_limits/40856.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2011-2014 Free Software Foundation, Inc.
Index: testsuite/18_support/numeric_limits/char16_32_t.cc
===================================================================
--- testsuite/18_support/numeric_limits/char16_32_t.cc	(revision 216278)
+++ testsuite/18_support/numeric_limits/char16_32_t.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-cstdint "" }
 
 // 2008-05-20  Paolo Carlini  <paolo.carlini@oracle.com>
Index: testsuite/18_support/numeric_limits/cons/default_c++0x.cc
===================================================================
--- testsuite/18_support/numeric_limits/cons/default_c++0x.cc	(revision 216278)
+++ testsuite/18_support/numeric_limits/cons/default_c++0x.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2008-2014 Free Software Foundation, Inc.
 //
Index: testsuite/18_support/numeric_limits/dr559.cc
===================================================================
--- testsuite/18_support/numeric_limits/dr559.cc	(revision 216278)
+++ testsuite/18_support/numeric_limits/dr559.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2010-02-17  Paolo Carlini  <paolo.carlini@oracle.com>
 //
Index: testsuite/18_support/numeric_limits/lowest.cc
===================================================================
--- testsuite/18_support/numeric_limits/lowest.cc	(revision 216278)
+++ testsuite/18_support/numeric_limits/lowest.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-add-options ieee }
 
 // 2010-02-25  Ed Smith-Rowland
Index: testsuite/18_support/numeric_limits/max_digits10.cc
===================================================================
--- testsuite/18_support/numeric_limits/max_digits10.cc	(revision 216278)
+++ testsuite/18_support/numeric_limits/max_digits10.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-add-options ieee }
 
 // 2010-02-25  Ed Smith-Rowland
Index: testsuite/18_support/numeric_limits/requirements/constexpr_data.cc
===================================================================
--- testsuite/18_support/numeric_limits/requirements/constexpr_data.cc	(revision 216278)
+++ testsuite/18_support/numeric_limits/requirements/constexpr_data.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
 //
Index: testsuite/18_support/numeric_limits/requirements/constexpr_functions.cc
===================================================================
--- testsuite/18_support/numeric_limits/requirements/constexpr_functions.cc	(revision 216278)
+++ testsuite/18_support/numeric_limits/requirements/constexpr_functions.cc	(working copy)
@@ -1,5 +1,5 @@
 // { dg-do compile }
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
 //
Index: testsuite/18_support/type_info/fundamental.cc
===================================================================
--- testsuite/18_support/type_info/fundamental.cc	(revision 216278)
+++ testsuite/18_support/type_info/fundamental.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-require-effective-target dfp }
 
 // 2011-02-23  Benjamin Kosnik  <bkoz@redhat.com>
Index: testsuite/18_support/type_info/hash_code.cc
===================================================================
--- testsuite/18_support/type_info/hash_code.cc	(revision 216278)
+++ testsuite/18_support/type_info/hash_code.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // 2010-09-21  Paolo Carlini  <paolo.carlini@oracle.com>
 //
Index: testsuite/19_diagnostics/error_category/cons/copy_neg.cc
===================================================================
--- testsuite/19_diagnostics/error_category/cons/copy_neg.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_category/cons/copy_neg.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 // 2007-08-22 Benjamin Kosnik  <bkoz@redhat.com>
 
Index: testsuite/19_diagnostics/error_category/cons/default.cc
===================================================================
--- testsuite/19_diagnostics/error_category/cons/default.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_category/cons/default.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // 2007-08-22 Benjamin Kosnik  <bkoz@redhat.com>
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/error_category/operators/equal.cc
===================================================================
--- testsuite/19_diagnostics/error_category/operators/equal.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_category/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-additional-options "-static-libgcc" { target *-*-mingw* } }
 // 2007-08-22 Benjamin Kosnik  <bkoz@redhat.com>
 
Index: testsuite/19_diagnostics/error_category/operators/not_equal.cc
===================================================================
--- testsuite/19_diagnostics/error_category/operators/not_equal.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_category/operators/not_equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // 2007-08-22 Benjamin Kosnik  <bkoz@redhat.com>
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/error_code/cons/1.cc
===================================================================
--- testsuite/19_diagnostics/error_code/cons/1.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_code/cons/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-additional-options "-static-libstdc++" { target *-*-mingw* } }
 // 2007-08-22 Benjamin Kosnik  <bkoz@redhat.com>
 
Index: testsuite/19_diagnostics/error_code/cons/39882.cc
===================================================================
--- testsuite/19_diagnostics/error_code/cons/39882.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_code/cons/39882.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
 //
Index: testsuite/19_diagnostics/error_code/modifiers/39882.cc
===================================================================
--- testsuite/19_diagnostics/error_code/modifiers/39882.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_code/modifiers/39882.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
 //
Index: testsuite/19_diagnostics/error_code/operators/bool.cc
===================================================================
--- testsuite/19_diagnostics/error_code/operators/bool.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_code/operators/bool.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-additional-options "-static-libstdc++" { target *-*-mingw* } }
 // 2007-08-22 Benjamin Kosnik  <bkoz@redhat.com>
 
Index: testsuite/19_diagnostics/error_code/operators/bool_neg.cc
===================================================================
--- testsuite/19_diagnostics/error_code/operators/bool_neg.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_code/operators/bool_neg.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 // 2007-08-22 Benjamin Kosnik  <bkoz@redhat.com>
 
Index: testsuite/19_diagnostics/error_code/operators/equal.cc
===================================================================
--- testsuite/19_diagnostics/error_code/operators/equal.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_code/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-additional-options "-static-libstdc++" { target *-*-mingw* } }
 // 2007-08-22 Benjamin Kosnik  <bkoz@redhat.com>
 
Index: testsuite/19_diagnostics/error_code/operators/not_equal.cc
===================================================================
--- testsuite/19_diagnostics/error_code/operators/not_equal.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_code/operators/not_equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-additional-options "-static-libstdc++" { target *-*-mingw* } }
 // 2007-08-22 Benjamin Kosnik  <bkoz@redhat.com>
 
Index: testsuite/19_diagnostics/error_condition/cons/1.cc
===================================================================
--- testsuite/19_diagnostics/error_condition/cons/1.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_condition/cons/1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-additional-options "-static-libstdc++" { target *-*-mingw* } }
 
 // Copyright (C) 2008-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/error_condition/cons/39881.cc
===================================================================
--- testsuite/19_diagnostics/error_condition/cons/39881.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_condition/cons/39881.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
 //
Index: testsuite/19_diagnostics/error_condition/modifiers/39881.cc
===================================================================
--- testsuite/19_diagnostics/error_condition/modifiers/39881.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_condition/modifiers/39881.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
 //
Index: testsuite/19_diagnostics/error_condition/operators/bool.cc
===================================================================
--- testsuite/19_diagnostics/error_condition/operators/bool.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_condition/operators/bool.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-additional-options "-static-libstdc++" { target *-*-mingw* } }
 
 // Copyright (C) 2008-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/error_condition/operators/bool_neg.cc
===================================================================
--- testsuite/19_diagnostics/error_condition/operators/bool_neg.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_condition/operators/bool_neg.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2008-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/error_condition/operators/equal.cc
===================================================================
--- testsuite/19_diagnostics/error_condition/operators/equal.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_condition/operators/equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-additional-options "-static-libstdc++" { target *-*-mingw* } }
 
 // Copyright (C) 2008-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/error_condition/operators/not_equal.cc
===================================================================
--- testsuite/19_diagnostics/error_condition/operators/not_equal.cc	(revision 216278)
+++ testsuite/19_diagnostics/error_condition/operators/not_equal.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-additional-options "-static-libstdc++" { target *-*-mingw* } }
 
 // Copyright (C) 2008-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/headers/system_error/34538.cc
===================================================================
--- testsuite/19_diagnostics/headers/system_error/34538.cc	(revision 216278)
+++ testsuite/19_diagnostics/headers/system_error/34538.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/headers/system_error/errc_std_c++0x.cc
===================================================================
--- testsuite/19_diagnostics/headers/system_error/errc_std_c++0x.cc	(revision 216278)
+++ testsuite/19_diagnostics/headers/system_error/errc_std_c++0x.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/headers/system_error/types_std_c++0x.cc
===================================================================
--- testsuite/19_diagnostics/headers/system_error/types_std_c++0x.cc	(revision 216278)
+++ testsuite/19_diagnostics/headers/system_error/types_std_c++0x.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/logic_error/what-3.cc
===================================================================
--- testsuite/19_diagnostics/logic_error/what-3.cc	(revision 216278)
+++ testsuite/19_diagnostics/logic_error/what-3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
 //
Index: testsuite/19_diagnostics/system_error/39880.cc
===================================================================
--- testsuite/19_diagnostics/system_error/39880.cc	(revision 216278)
+++ testsuite/19_diagnostics/system_error/39880.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // { dg-do compile }
 
 // Copyright (C) 2009-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/system_error/cons-1.cc
===================================================================
--- testsuite/19_diagnostics/system_error/cons-1.cc	(revision 216278)
+++ testsuite/19_diagnostics/system_error/cons-1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // 2007-06-05 Benjamin Kosnik  <bkoz@redhat.com>
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/system_error/cons_virtual_derivation.cc
===================================================================
--- testsuite/19_diagnostics/system_error/cons_virtual_derivation.cc	(revision 216278)
+++ testsuite/19_diagnostics/system_error/cons_virtual_derivation.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 // 2007-05-29 Benjamin Kosnik  <bkoz@redhat.com>
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
Index: testsuite/19_diagnostics/system_error/what-1.cc
===================================================================
--- testsuite/19_diagnostics/system_error/what-1.cc	(revision 216278)
+++ testsuite/19_diagnostics/system_error/what-1.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
 //
Index: testsuite/19_diagnostics/system_error/what-2.cc
===================================================================
--- testsuite/19_diagnostics/system_error/what-2.cc	(revision 216278)
+++ testsuite/19_diagnostics/system_error/what-2.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
 //
Index: testsuite/19_diagnostics/system_error/what-3.cc
===================================================================
--- testsuite/19_diagnostics/system_error/what-3.cc	(revision 216278)
+++ testsuite/19_diagnostics/system_error/what-3.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
 //
Index: testsuite/19_diagnostics/system_error/what-4.cc
===================================================================
--- testsuite/19_diagnostics/system_error/what-4.cc	(revision 216278)
+++ testsuite/19_diagnostics/system_error/what-4.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
 //
Index: testsuite/19_diagnostics/system_error/what-big.cc
===================================================================
--- testsuite/19_diagnostics/system_error/what-big.cc	(revision 216278)
+++ testsuite/19_diagnostics/system_error/what-big.cc	(working copy)
@@ -1,4 +1,4 @@
-// { dg-options "-std=gnu++0x" }
+// { dg-options "-std=gnu++11" }
 
 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
 //

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [v3] Minimally exercise the other alias_decls in <type_traits>
  2014-10-15 18:29   ` Paolo Carlini
@ 2014-10-16  8:14     ` Paolo Carlini
  0 siblings, 0 replies; 12+ messages in thread
From: Paolo Carlini @ 2014-10-16  8:14 UTC (permalink / raw)
  To: gcc-patches; +Cc: libstdc++

[-- Attachment #1: Type: text/plain, Size: 90 bytes --]

... the below completes the work, no -std=gnu++0x anymore.

Paolo.

/////////////////////

[-- Attachment #2: CL_c0x_all_rest --]
[-- Type: text/plain, Size: 88276 bytes --]

2014-10-16  Paolo Carlini  <paolo.carlini@oracle.com>

	* testsuite/lib/libstdc++.exp: Prefer -std=gnu++11.
	* testsuite/20_util/add_lvalue_reference/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/add_rvalue_reference/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/addressof/1.cc: Likewise.
	* testsuite/20_util/addressof/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/aligned_storage/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/aligned_storage/value.cc: Likewise.
	* testsuite/20_util/allocator_traits/members/
	allocate_hint.cc: Likewise.
	* testsuite/20_util/allocator_traits/members/construct.cc: Likewise.
	* testsuite/20_util/allocator_traits/members/destroy.cc: Likewise.
	* testsuite/20_util/allocator_traits/members/max_size.cc: Likewise.
	* testsuite/20_util/allocator_traits/members/select.cc: Likewise.
	* testsuite/20_util/allocator_traits/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/allocator_traits/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/bad_function_call/
	cons_virtual_derivation.cc: Likewise.
	* testsuite/20_util/bind/35569.cc: Likewise.
	* testsuite/20_util/bind/38889.cc: Likewise.
	* testsuite/20_util/bind/42593.cc: Likewise.
	* testsuite/20_util/bind/45924.cc: Likewise.
	* testsuite/20_util/bind/48698.cc: Likewise.
	* testsuite/20_util/bind/49058_1.cc: Likewise.
	* testsuite/20_util/bind/49058_2.cc: Likewise.
	* testsuite/20_util/bind/all_bound.cc: Likewise.
	* testsuite/20_util/bind/conv_result.cc: Likewise.
	* testsuite/20_util/bind/cv_quals.cc: Likewise.
	* testsuite/20_util/bind/cv_quals_2.cc: Likewise.
	* testsuite/20_util/bind/cv_quals_3.cc: Likewise.
	* testsuite/20_util/bind/move.cc: Likewise.
	* testsuite/20_util/bind/nested.cc: Likewise.
	* testsuite/20_util/bind/placeholders.cc: Likewise.
	* testsuite/20_util/bind/ref.cc: Likewise.
	* testsuite/20_util/bind/ref2.cc: Likewise.
	* testsuite/20_util/bind/ref_neg.cc: Likewise.
	* testsuite/20_util/bind/socket.cc: Likewise.
	* testsuite/20_util/common_type/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/common_type/requirements/
	typedefs-1.cc: Likewise.
	* testsuite/20_util/conditional/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/conditional/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/decay/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/declval/requirements/1.cc: Likewise.
	* testsuite/20_util/declval/requirements/1_neg.cc: Likewise.
	* testsuite/20_util/default_delete/48631_neg.cc: Likewise.
	* testsuite/20_util/default_delete/cons/constexpr.cc: Likewise.
	* testsuite/20_util/duration/arithmetic/1.cc: Likewise.
	* testsuite/20_util/duration/arithmetic/2.cc: Likewise.
	* testsuite/20_util/duration/arithmetic/constexpr.cc: Likewise.
	* testsuite/20_util/duration/arithmetic/dr2020.cc: Likewise.
	* testsuite/20_util/duration/arithmetic/dr934-1.cc: Likewise.
	* testsuite/20_util/duration/arithmetic/dr934-2.cc: Likewise.
	* testsuite/20_util/duration/comparison_operators/1.cc: Likewise.
	* testsuite/20_util/duration/comparison_operators/
	constexpr.cc: Likewise.
	* testsuite/20_util/duration/cons/1.cc: Likewise.
	* testsuite/20_util/duration/cons/1_neg.cc: Likewise.
	* testsuite/20_util/duration/cons/2.cc: Likewise.
	* testsuite/20_util/duration/cons/constexpr.cc: Likewise.
	* testsuite/20_util/duration/cons/dr974_neg.cc: Likewise.
	* testsuite/20_util/duration/requirements/
	constexpr_functions.cc: Likewise.
	* testsuite/20_util/duration/requirements/
	explicit_instantiation/explicit_instantiation.cc: Likewise.
	* testsuite/20_util/duration/requirements/typedefs_neg1.cc: Likewise.
	* testsuite/20_util/duration/requirements/typedefs_neg2.cc: Likewise.
	* testsuite/20_util/duration/requirements/typedefs_neg3.cc: Likewise.
	* testsuite/20_util/duration_cast/constexpr.cc: Likewise.
	* testsuite/20_util/enable_if/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/enable_if/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/enable_if/requirements/typedefs_neg.cc: Likewise.
	* testsuite/20_util/enable_shared_from_this/cons/constexpr.cc: Likewise.
	* testsuite/20_util/enable_shared_from_this/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/forward/1.cc: Likewise.
	* testsuite/20_util/forward/1_neg.cc: Likewise.
	* testsuite/20_util/forward/a.cc: Likewise.
	* testsuite/20_util/forward/b.cc: Likewise.
	* testsuite/20_util/forward/c_neg.cc: Likewise.
	* testsuite/20_util/forward/d.cc: Likewise.
	* testsuite/20_util/forward/e.cc: Likewise.
	* testsuite/20_util/forward/f_neg.cc: Likewise.
	* testsuite/20_util/forward/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/function/1.cc: Likewise.
	* testsuite/20_util/function/10.cc: Likewise.
	* testsuite/20_util/function/2.cc: Likewise.
	* testsuite/20_util/function/3.cc: Likewise.
	* testsuite/20_util/function/4.cc: Likewise.
	* testsuite/20_util/function/43397.cc: Likewise.
	* testsuite/20_util/function/48541.cc: Likewise.
	* testsuite/20_util/function/5.cc: Likewise.
	* testsuite/20_util/function/6.cc: Likewise.
	* testsuite/20_util/function/7.cc: Likewise.
	* testsuite/20_util/function/8.cc: Likewise.
	* testsuite/20_util/function/9.cc: Likewise.
	* testsuite/20_util/function/assign/move.cc: Likewise.
	* testsuite/20_util/function/assign/move_target.cc: Likewise.
	* testsuite/20_util/function/cmp/cmp_neg.cc: Likewise.
	* testsuite/20_util/function/cons/55320.cc: Likewise.
	* testsuite/20_util/function/cons/addressof.cc: Likewise.
	* testsuite/20_util/function/cons/callable.cc: Likewise.
	* testsuite/20_util/function/cons/move.cc: Likewise.
	* testsuite/20_util/function/cons/move_target.cc: Likewise.
	* testsuite/20_util/function/invoke/move_only.cc: Likewise.
	* testsuite/20_util/function/null_pointer_comparisons.cc: Likewise.
	* testsuite/20_util/function/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/function_objects/mem_fn/adl.cc: Likewise.
	* testsuite/20_util/has_trivial_copy_assign/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/has_trivial_copy_assign/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/has_trivial_copy_constructor/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/has_trivial_copy_constructor/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/has_trivial_default_constructor/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/has_trivial_default_constructor/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/hash/chi2_q_bit_flip_set.cc: Likewise.
	* testsuite/20_util/hash/chi2_q_bit_string_set.cc: Likewise.
	* testsuite/20_util/hash/chi2_q_document_words.cc: Likewise.
	* testsuite/20_util/hash/chi2_q_numeric_pattern_set.cc: Likewise.
	* testsuite/20_util/hash/chi2_q_uniform_random.cc: Likewise.
	* testsuite/20_util/hash/operators/size_t.cc: Likewise.
	* testsuite/20_util/hash/quality.cc: Likewise.
	* testsuite/20_util/hash/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/headers/functional/types_std_c++0x.cc: Likewise.
	* testsuite/20_util/headers/functional/
	using_namespace_std_placeholders.cc: Likewise.
	* testsuite/20_util/headers/memory/types_std_c++0x.cc: Likewise.
	* testsuite/20_util/headers/type_traits/types_std_c++0x.cc: Likewise.
	* testsuite/20_util/headers/type_traits/
	types_std_c++0x_neg.cc: Likewise.
	* testsuite/20_util/is_assignable/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_assignable/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_assignable/value.cc: Likewise.
	* testsuite/20_util/is_compound/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_compound/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_constructible/51185.cc: Likewise.
	* testsuite/20_util/is_constructible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_constructible/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_constructible/value-2.cc: Likewise.
	* testsuite/20_util/is_convertible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_convertible/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_copy_assignable/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_copy_assignable/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_copy_constructible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_copy_constructible/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_default_constructible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_default_constructible/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_default_constructible/value.cc: Likewise.
	* testsuite/20_util/is_destructible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_destructible/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_destructible/value.cc: Likewise.
	* testsuite/20_util/is_floating_point/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_floating_point/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_function/24808.cc: Likewise.
	* testsuite/20_util/is_function/35637.cc: Likewise.
	* testsuite/20_util/is_function/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_function/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_fundamental/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_fundamental/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_integral/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_integral/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_literal_type/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_literal_type/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_lvalue_reference/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_lvalue_reference/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_member_function_pointer/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_member_function_pointer/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_member_object_pointer/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_member_object_pointer/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_member_pointer/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_member_pointer/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_move_assignable/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_move_assignable/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_move_constructible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_move_constructible/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_nothrow_assignable/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_nothrow_assignable/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_nothrow_constructible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_nothrow_constructible/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_nothrow_copy_assignable/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_nothrow_copy_assignable/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_nothrow_copy_constructible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_nothrow_copy_constructible/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_nothrow_default_constructible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_nothrow_default_constructible/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_nothrow_destructible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_nothrow_destructible/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_nothrow_destructible/value.cc: Likewise.
	* testsuite/20_util/is_nothrow_move_assignable/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_nothrow_move_assignable/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_nothrow_move_constructible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_nothrow_move_constructible/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_object/24808.cc: Likewise.
	* testsuite/20_util/is_object/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_object/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_pod/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_pod/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_reference/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_reference/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_rvalue_reference/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_rvalue_reference/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_scalar/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_scalar/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_signed/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_signed/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_standard_layout/requiremenents/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_standard_layout/requiremenents/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_trivial/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_trivial/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/is_unsigned/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_unsigned/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/make_signed/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/make_signed/requirements/typedefs-2.cc: Likewise.
	* testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Likewise.
	* testsuite/20_util/make_unsigned/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/make_unsigned/requirements/
	typedefs_neg.cc: Likewise.
	* testsuite/20_util/move/1.cc: Likewise.
	* testsuite/20_util/move/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/move_if_noexcept/1.cc: Likewise.
	* testsuite/20_util/move_if_noexcept/constexpr.cc: Likewise.
	* testsuite/20_util/move_if_noexcept/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/owner_less/cmp.cc: Likewise.
	* testsuite/20_util/pair/44487.cc: Likewise.
	* testsuite/20_util/pair/astuple/get.cc: Likewise.
	* testsuite/20_util/pair/comparison_operators/constexpr.cc: Likewise.
	* testsuite/20_util/pair/cons/constexpr.cc: Likewise.
	* testsuite/20_util/pair/cons/noexcept_move_construct.cc: Likewise.
	* testsuite/20_util/pair/constexpr_get.cc: Likewise.
	* testsuite/20_util/pair/make_pair/constexpr.cc: Likewise.
	* testsuite/20_util/pair/moveable.cc: Likewise.
	* testsuite/20_util/pair/noexcept_move_assign.cc: Likewise.
	* testsuite/20_util/pair/noexcept_swap.cc: Likewise.
	* testsuite/20_util/pair/piecewise.cc: Likewise.
	* testsuite/20_util/pair/piecewise2.cc: Likewise.
	* testsuite/20_util/pair/requirements/dr801.cc: Likewise.
	* testsuite/20_util/pair/swap.cc: Likewise.
	* testsuite/20_util/pointer_traits/pointer_to.cc: Likewise.
	* testsuite/20_util/pointer_traits/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/pointer_traits/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/ratio/comparisons/comp1.cc: Likewise.
	* testsuite/20_util/ratio/comparisons/comp2.cc: Likewise.
	* testsuite/20_util/ratio/comparisons/comp3.cc: Likewise.
	* testsuite/20_util/ratio/cons/cons1.cc: Likewise.
	* testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Likewise.
	* testsuite/20_util/ratio/operations/45866.cc: Likewise.
	* testsuite/20_util/ratio/operations/47913.cc: Likewise.
	* testsuite/20_util/ratio/operations/53840.cc: Likewise.
	* testsuite/20_util/ratio/operations/ops1.cc: Likewise.
	* testsuite/20_util/ratio/operations/ops2.cc: Likewise.
	* testsuite/20_util/ratio/operations/ops3.cc: Likewise.
	* testsuite/20_util/ratio/operations/ops_overflow_neg.cc: Likewise.
	* testsuite/20_util/ratio/requirements/constexpr_data.cc: Likewise.
	* testsuite/20_util/reference_wrapper/24803.cc: Likewise.
	* testsuite/20_util/reference_wrapper/41792.cc: Likewise.
	* testsuite/20_util/reference_wrapper/invoke-2.cc: Likewise.
	* testsuite/20_util/reference_wrapper/invoke.cc: Likewise.
	* testsuite/20_util/reference_wrapper/ref_neg.cc: Likewise.
	* testsuite/20_util/reference_wrapper/result_type.cc: Likewise.
	* testsuite/20_util/reference_wrapper/typedefs-2.cc: Likewise.
	* testsuite/20_util/reference_wrapper/typedefs-3.cc: Likewise.
	* testsuite/20_util/reference_wrapper/typedefs.cc: Likewise.
	* testsuite/20_util/remove_reference/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/result_of/1.cc: Likewise.
	* testsuite/20_util/result_of/2.cc: Likewise.
	* testsuite/20_util/scoped_allocator/1.cc: Likewise.
	* testsuite/20_util/scoped_allocator/2.cc: Likewise.
	* testsuite/20_util/scoped_allocator/propagation.cc: Likewise.
	* testsuite/20_util/scoped_allocator/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/scoped_allocator/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/shared_ptr/assign/assign.cc: Likewise.
	* testsuite/20_util/shared_ptr/assign/auto_ptr.cc: Likewise.
	* testsuite/20_util/shared_ptr/assign/auto_ptr_neg.cc: Likewise.
	* testsuite/20_util/shared_ptr/assign/auto_ptr_rvalue.cc: Likewise.
	* testsuite/20_util/shared_ptr/assign/dr541.cc: Likewise.
	* testsuite/20_util/shared_ptr/assign/move.cc: Likewise.
	* testsuite/20_util/shared_ptr/assign/shared_ptr.cc: Likewise.
	* testsuite/20_util/shared_ptr/assign/shared_ptr_neg.cc: Likewise.
	* testsuite/20_util/shared_ptr/assign/
	unique_ptr_lvalue_neg.cc: Likewise.
	* testsuite/20_util/shared_ptr/assign/unique_ptr_rvalue.cc: Likewise.
	* testsuite/20_util/shared_ptr/casts/1.cc: Likewise.
	* testsuite/20_util/shared_ptr/comparison/42925.cc: Likewise.
	* testsuite/20_util/shared_ptr/comparison/cmp.cc: Likewise.
	* testsuite/20_util/shared_ptr/comparison/dr1401.cc: Likewise.
	* testsuite/20_util/shared_ptr/comparison/less.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/39405.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/43820_neg.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/46910.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/51365.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/52924.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/55123.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/alias.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/alloc.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/alloc_min.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/auto_ptr.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/auto_ptr_neg.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/constexpr.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/copy.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/default.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/move.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/
	noexcept_move_construct.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/nullptr.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/pointer.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/unique_ptr_deleter.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/
	unique_ptr_deleter_ref_1.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/
	unique_ptr_deleter_ref_2.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/unique_ptr_neg.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/weak_ptr.cc: Likewise.
	* testsuite/20_util/shared_ptr/cons/weak_ptr_expired.cc: Likewise.
	* testsuite/20_util/shared_ptr/creation/36949.cc: Likewise.
	* testsuite/20_util/shared_ptr/creation/alloc.cc: Likewise.
	* testsuite/20_util/shared_ptr/creation/alloc_min.cc: Likewise.
	* testsuite/20_util/shared_ptr/creation/dr402.cc: Likewise.
	* testsuite/20_util/shared_ptr/creation/dr925.cc: Likewise.
	* testsuite/20_util/shared_ptr/creation/make.cc: Likewise.
	* testsuite/20_util/shared_ptr/creation/private.cc: Likewise.
	* testsuite/20_util/shared_ptr/dest/dest.cc: Likewise.
	* testsuite/20_util/shared_ptr/hash/1.cc: Likewise.
	* testsuite/20_util/shared_ptr/misc/24595.cc: Likewise.
	* testsuite/20_util/shared_ptr/misc/42019.cc: Likewise.
	* testsuite/20_util/shared_ptr/misc/io.cc: Likewise.
	* testsuite/20_util/shared_ptr/misc/swap.cc: Likewise.
	* testsuite/20_util/shared_ptr/modifiers/24805.cc: Likewise.
	* testsuite/20_util/shared_ptr/modifiers/reset.cc: Likewise.
	* testsuite/20_util/shared_ptr/modifiers/reset_alloc.cc: Likewise.
	* testsuite/20_util/shared_ptr/modifiers/reset_neg.cc: Likewise.
	* testsuite/20_util/shared_ptr/modifiers/swap.cc: Likewise.
	* testsuite/20_util/shared_ptr/modifiers/swap_neg.cc: Likewise.
	* testsuite/20_util/shared_ptr/observers/bool_conv.cc: Likewise.
	* testsuite/20_util/shared_ptr/observers/get.cc: Likewise.
	* testsuite/20_util/shared_ptr/observers/owner_before.cc: Likewise.
	* testsuite/20_util/shared_ptr/observers/unique.cc: Likewise.
	* testsuite/20_util/shared_ptr/observers/use_count.cc: Likewise.
	* testsuite/20_util/shared_ptr/thread/
	default_weaktoshared.cc: Likewise.
	* testsuite/20_util/shared_ptr/thread/mutex_weaktoshared.cc: Likewise.
	* testsuite/20_util/specialized_algorithms/uninitialized_copy/
	move_iterators/1.cc: Likewise.
	* testsuite/20_util/specialized_algorithms/uninitialized_copy_n/
	move_iterators/1.cc: Likewise.
	* testsuite/20_util/steady_clock/constexpr_data.cc: Likewise.
	* testsuite/20_util/system_clock/1.cc: Likewise.
	* testsuite/20_util/system_clock/constexpr_data.cc: Likewise.
	* testsuite/20_util/time_point/1.cc: Likewise.
	* testsuite/20_util/time_point/2.cc: Likewise.
	* testsuite/20_util/time_point/3.cc: Likewise.
	* testsuite/20_util/time_point/comparison_operators/
	constexpr.cc: Likewise.
	* testsuite/20_util/time_point/cons/constexpr.cc: Likewise.
	* testsuite/20_util/time_point/nonmember/constexpr.cc: Likewise.
	* testsuite/20_util/time_point/requirements/
	constexpr_functions.cc: Likewise.
	* testsuite/20_util/time_point/requirements/
	explicit_instantiation/explicit_instantiation.cc: Likewise.
	* testsuite/20_util/time_point_cast/constexpr.cc: Likewise.
	* testsuite/20_util/tuple/48476.cc: Likewise.
	* testsuite/20_util/tuple/51365.cc: Likewise.
	* testsuite/20_util/tuple/comparison_operators/35480_neg.cc: Likewise.
	* testsuite/20_util/tuple/comparison_operators/
	comparisons.cc: Likewise.
	* testsuite/20_util/tuple/comparison_operators/constexpr.cc: Likewise.
	* testsuite/20_util/tuple/cons/41530.cc: Likewise.
	* testsuite/20_util/tuple/cons/44487.cc: Likewise.
	* testsuite/20_util/tuple/cons/45228.cc: Likewise.
	* testsuite/20_util/tuple/cons/48476.cc: Likewise.
	* testsuite/20_util/tuple/cons/allocators.cc: Likewise.
	* testsuite/20_util/tuple/cons/assignment.cc: Likewise.
	* testsuite/20_util/tuple/cons/big_tuples.cc: Likewise.
	* testsuite/20_util/tuple/cons/constexpr-2.cc: Likewise.
	* testsuite/20_util/tuple/cons/constexpr-3.cc: Likewise.
	* testsuite/20_util/tuple/cons/constructor.cc: Likewise.
	* testsuite/20_util/tuple/cons/converting.cc: Likewise.
	* testsuite/20_util/tuple/cons/noexcept_move_construct.cc: Likewise.
	* testsuite/20_util/tuple/creation_functions/23978.cc: Likewise.
	* testsuite/20_util/tuple/creation_functions/48476.cc: Likewise.
	* testsuite/20_util/tuple/creation_functions/constexpr.cc: Likewise.
	* testsuite/20_util/tuple/creation_functions/
	forward_as_tuple.cc: Likewise.
	* testsuite/20_util/tuple/creation_functions/make_tuple.cc: Likewise.
	* testsuite/20_util/tuple/creation_functions/tie.cc: Likewise.
	* testsuite/20_util/tuple/creation_functions/tie2.cc: Likewise.
	* testsuite/20_util/tuple/creation_functions/tuple_cat.cc: Likewise.
	* testsuite/20_util/tuple/cv_tuple_element.cc: Likewise.
	* testsuite/20_util/tuple/cv_tuple_size.cc: Likewise.
	* testsuite/20_util/tuple/element_access/constexpr_get.cc: Likewise.
	* testsuite/20_util/tuple/element_access/get.cc: Likewise.
	* testsuite/20_util/tuple/element_access/get2.cc: Likewise.
	* testsuite/20_util/tuple/moveable.cc: Likewise.
	* testsuite/20_util/tuple/moveable2.cc: Likewise.
	* testsuite/20_util/tuple/noexcept_move_assign.cc: Likewise.
	* testsuite/20_util/tuple/noexcept_swap.cc: Likewise.
	* testsuite/20_util/tuple/requirements/dr801.cc: Likewise.
	* testsuite/20_util/tuple/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/tuple/swap.cc: Likewise.
	* testsuite/20_util/tuple/tuple_size.cc: Likewise.
	* testsuite/20_util/typeindex/comparison_operators.cc: Likewise.
	* testsuite/20_util/typeindex/hash.cc: Likewise.
	* testsuite/20_util/typeindex/hash_code.cc: Likewise.
	* testsuite/20_util/typeindex/name.cc: Likewise.
	* testsuite/20_util/underlying_type/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/underlying_type/requirements/
	typedefs-1.cc: Likewise.
	* testsuite/20_util/underlying_type/requirements/
	typedefs-2.cc: Likewise.
	* testsuite/20_util/unique_ptr/54351.cc: Likewise.
	* testsuite/20_util/unique_ptr/assign/48635.cc: Likewise.
	* testsuite/20_util/unique_ptr/assign/48635_neg.cc: Likewise.
	* testsuite/20_util/unique_ptr/assign/assign_neg.cc: Likewise.
	* testsuite/20_util/unique_ptr/assign/move.cc: Likewise.
	* testsuite/20_util/unique_ptr/assign/move_array.cc: Likewise.
	* testsuite/20_util/unique_ptr/assign/nullptr.cc: Likewise.
	* testsuite/20_util/unique_ptr/comparison/42925.cc: Likewise.
	* testsuite/20_util/unique_ptr/comparison/dr1401.cc: Likewise.
	* testsuite/20_util/unique_ptr/cons/auto_ptr.cc: Likewise.
	* testsuite/20_util/unique_ptr/cons/auto_ptr_neg.cc: Likewise.
	* testsuite/20_util/unique_ptr/cons/constexpr.cc: Likewise.
	* testsuite/20_util/unique_ptr/cons/
	noexcept_move_construct.cc: Likewise.
	* testsuite/20_util/unique_ptr/cons/nullptr.cc: Likewise.
	* testsuite/20_util/unique_ptr/cons/pointer.cc: Likewise.
	* testsuite/20_util/unique_ptr/cons/pointer_array.cc: Likewise.
	* testsuite/20_util/unique_ptr/cons/ptr_deleter.cc: Likewise.
	* testsuite/20_util/unique_ptr/cons/ptr_deleter_neg.cc: Likewise.
	* testsuite/20_util/unique_ptr/hash/1.cc: Likewise.
	* testsuite/20_util/unique_ptr/modifiers/43183.cc: Likewise.
	* testsuite/20_util/unique_ptr/modifiers/48398.cc: Likewise.
	* testsuite/20_util/unique_ptr/modifiers/reset_neg.cc: Likewise.
	* testsuite/20_util/unique_ptr/requirements/
	explicit_instantiation/explicit_instantiation.cc: Likewise.
	* testsuite/20_util/unique_ptr/specialized_algorithms/
	comparisons.cc: Likewise.
	* testsuite/20_util/unique_ptr/specialized_algorithms/
	comparisons_array.cc: Likewise.
	* testsuite/20_util/unique_ptr/specialized_algorithms/
	swap.cc: Likewise.
	* testsuite/20_util/uses_allocator/cons_neg.cc: Likewise.
	* testsuite/20_util/uses_allocator/construction.cc: Likewise.
	* testsuite/20_util/uses_allocator/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/uses_allocator/requirements/typedefs.cc: Likewise.
	* testsuite/20_util/uses_allocator/value.cc: Likewise.
	* testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Likewise.
	* testsuite/20_util/weak_ptr/cons/constexpr.cc: Likewise.
	* testsuite/20_util/weak_ptr/cons/noexcept_move_construct.cc: Likewise.
	* testsuite/20_util/weak_ptr/lock/1.cc: Likewise.
	* testsuite/20_util/weak_ptr/observers/owner_before.cc: Likewise.
	* testsuite/23_containers/array/capacity/
	constexpr_functions.cc: Likewise.
	* testsuite/23_containers/array/capacity/empty.cc: Likewise.
	* testsuite/23_containers/array/capacity/max_size.cc: Likewise.
	* testsuite/23_containers/array/capacity/size.cc: Likewise.
	* testsuite/23_containers/array/comparison_operators/equal.cc: Likewise.
	* testsuite/23_containers/array/comparison_operators/
	greater.cc: Likewise.
	* testsuite/23_containers/array/comparison_operators/
	greater_or_equal.cc: Likewise.
	* testsuite/23_containers/array/comparison_operators/less.cc: Likewise.
	* testsuite/23_containers/array/comparison_operators/
	less_or_equal.cc: Likewise.
	* testsuite/23_containers/array/comparison_operators/
	not_equal.cc: Likewise.
	* testsuite/23_containers/array/cons/
	aggregate_initialization.cc: Likewise.
	* testsuite/23_containers/array/element_access/54388.cc: Likewise.
	* testsuite/23_containers/array/element_access/at_neg.cc: Likewise.
	* testsuite/23_containers/array/element_access/
	at_out_of_range.cc: Likewise.
	* testsuite/23_containers/array/element_access/back.cc: Likewise.
	* testsuite/23_containers/array/element_access/
	constexpr_element_access.cc: Likewise.
	* testsuite/23_containers/array/element_access/data.cc: Likewise.
	* testsuite/23_containers/array/element_access/front.cc: Likewise.
	* testsuite/23_containers/array/iterators/end_is_one_past.cc: Likewise.
	* testsuite/23_containers/array/range_access.cc: Likewise.
	* testsuite/23_containers/array/requirements/citerators.cc: Likewise.
	* testsuite/23_containers/array/requirements/contiguous.cc: Likewise.
	* testsuite/23_containers/array/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/23_containers/array/requirements/
	explicit_instantiation/2.cc: Likewise.
	* testsuite/23_containers/array/requirements/
	explicit_instantiation/3.cc: Likewise.
	* testsuite/23_containers/array/requirements/fill.cc: Likewise.
	* testsuite/23_containers/array/requirements/member_swap.cc: Likewise.
	* testsuite/23_containers/array/requirements/typedefs.cc: Likewise.
	* testsuite/23_containers/array/requirements/
	zero_sized_arrays.cc: Likewise.
	* testsuite/23_containers/array/specialized_algorithms/
	swap.cc: Likewise.
	* testsuite/23_containers/array/tuple_interface/
	constexpr_get.cc: Likewise.
	* testsuite/23_containers/array/tuple_interface/get.cc: Likewise.
	* testsuite/23_containers/array/tuple_interface/
	tuple_element.cc: Likewise.
	* testsuite/23_containers/array/tuple_interface/tuple_size.cc: Likewise.
	* testsuite/23_containers/bitset/cons/2.cc: Likewise.
	* testsuite/23_containers/bitset/cons/3.cc: Likewise.
	* testsuite/23_containers/bitset/cons/50268.cc: Likewise.
	* testsuite/23_containers/bitset/cons/constexpr.cc: Likewise.
	* testsuite/23_containers/bitset/cons/dr1325-1.cc: Likewise.
	* testsuite/23_containers/bitset/cons/dr1325-2.cc: Likewise.
	* testsuite/23_containers/bitset/hash/1.cc: Likewise.
	* testsuite/23_containers/bitset/operations/constexpr-2.cc: Likewise.
	* testsuite/23_containers/bitset/operations/constexpr.cc: Likewise.
	* testsuite/23_containers/bitset/requirements/
	constexpr_functions.cc: Likewise.
	* testsuite/23_containers/bitset/requirements/
	explicit_instantiation/1_c++0x.cc: Likewise.
	* testsuite/23_containers/bitset/to_ullong/1.cc: Likewise.
	* testsuite/23_containers/deque/capacity/moveable.cc: Likewise.
	* testsuite/23_containers/deque/capacity/resize_size.cc: Likewise.
	* testsuite/23_containers/deque/capacity/shrink_to_fit.cc: Likewise.
	* testsuite/23_containers/deque/cons/cons_size.cc: Likewise.
	* testsuite/23_containers/deque/cons/moveable.cc: Likewise.
	* testsuite/23_containers/deque/cons/moveable2.cc: Likewise.
	* testsuite/23_containers/deque/debug/shrink_to_fit.cc: Likewise.
	* testsuite/23_containers/deque/init-list.cc: Likewise.
	* testsuite/23_containers/deque/modifiers/erase/50529.cc: Likewise.
	* testsuite/23_containers/deque/modifiers/erase/moveable.cc: Likewise.
	* testsuite/23_containers/deque/modifiers/moveable.cc: Likewise.
	* testsuite/23_containers/deque/modifiers/push_back/49836.cc: Likewise.
	* testsuite/23_containers/deque/modifiers/push_front/49836.cc: Likewise.
	* testsuite/23_containers/deque/range_access.cc: Likewise.
	* testsuite/23_containers/deque/requirements/citerators.cc: Likewise.
	* testsuite/23_containers/deque/requirements/exception/
	basic.cc: Likewise.
	* testsuite/23_containers/deque/requirements/exception/
	generation_prohibited.cc: Likewise.
	* testsuite/23_containers/deque/requirements/exception/
	propagation_consistent.cc: Likewise.
	* testsuite/23_containers/deque/requirements/
	explicit_instantiation/1_c++0x.cc: Likewise.
	* testsuite/23_containers/deque/requirements/typedefs.cc: Likewise.
	* testsuite/23_containers/forward_list/allocator/
	copy_assign.cc: Likewise.
	* testsuite/23_containers/forward_list/allocator/minimal.cc: Likewise.
	* testsuite/23_containers/forward_list/allocator/
	move_assign.cc: Likewise.
	* testsuite/23_containers/forward_list/allocator/noexcept.cc: Likewise.
	* testsuite/23_containers/forward_list/allocator/swap.cc: Likewise.
	* testsuite/23_containers/forward_list/capacity/1.cc: Likewise.
	* testsuite/23_containers/forward_list/capacity/
	resize_size.cc: Likewise.
	* testsuite/23_containers/forward_list/comparable.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/1.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/2.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/3.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/4.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/5.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/6.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/7.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/8.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/9.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/cons_size.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/moveable.cc: Likewise.
	* testsuite/23_containers/forward_list/cons/
	noexcept_move_construct.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/clear.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	erase_after1_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	erase_after2_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	erase_after3_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	erase_after4_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	erase_after5_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	erase_after6_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	erase_after7_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	erase_after8_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	erase_after9_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	insert_after1_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	insert_after2_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	insert_after3_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	move_constructor.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	splice_after.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	splice_after1_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	splice_after2_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	splice_after3_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	splice_after4_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	splice_after5_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	splice_after6_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/
	splice_after7_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/debug/swap.cc: Likewise.
	* testsuite/23_containers/forward_list/modifiers/1.cc: Likewise.
	* testsuite/23_containers/forward_list/modifiers/2.cc: Likewise.
	* testsuite/23_containers/forward_list/modifiers/3.cc: Likewise.
	* testsuite/23_containers/forward_list/modifiers/4.cc: Likewise.
	* testsuite/23_containers/forward_list/modifiers/5.cc: Likewise.
	* testsuite/23_containers/forward_list/operations/1.cc: Likewise.
	* testsuite/23_containers/forward_list/operations/2.cc: Likewise.
	* testsuite/23_containers/forward_list/operations/3.cc: Likewise.
	* testsuite/23_containers/forward_list/operations/4.cc: Likewise.
	* testsuite/23_containers/forward_list/operations/5.cc: Likewise.
	* testsuite/23_containers/forward_list/operations/6.cc: Likewise.
	* testsuite/23_containers/forward_list/operations/7.cc: Likewise.
	* testsuite/23_containers/forward_list/operations/
	remove_freed.cc: Likewise.
	* testsuite/23_containers/forward_list/range_access.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	citerators.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	do_the_right_thing.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	dr438/assign_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	dr438/constructor.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	dr438/constructor_1_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	dr438/constructor_2_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	dr438/insert_neg.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	exception/basic.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	exception/generation_prohibited.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/exception/
	propagation_consistent.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	explicit_instantiation/3.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	explicit_instantiation/4.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	explicit_instantiation/5.cc: Likewise.
	* testsuite/23_containers/forward_list/requirements/
	typedefs.cc: Likewise.
	* testsuite/23_containers/headers/forward_list/synopsis.cc: Likewise.
	* testsuite/23_containers/headers/tuple/types_std_c++0x.cc: Likewise.
	* testsuite/23_containers/list/capacity/resize_size.cc: Likewise.
	* testsuite/23_containers/list/cons/cons_size.cc: Likewise.
	* testsuite/23_containers/list/cons/moveable.cc: Likewise.
	* testsuite/23_containers/list/cons/
	noexcept_move_construct.cc: Likewise.
	* testsuite/23_containers/list/init-list.cc: Likewise.
	* testsuite/23_containers/list/modifiers/1_c++0x.cc: Likewise.
	* testsuite/23_containers/list/operations/2_c++0x.cc: Likewise.
	* testsuite/23_containers/list/operations/3_c++0x.cc: Likewise.
	* testsuite/23_containers/list/operations/42352.cc: Likewise.
	* testsuite/23_containers/list/range_access.cc: Likewise.
	* testsuite/23_containers/list/requirements/citerators.cc: Likewise.
	* testsuite/23_containers/list/requirements/
	do_the_right_thing.cc: Likewise.
	* testsuite/23_containers/list/requirements/exception/
	basic.cc: Likewise.
	* testsuite/23_containers/list/requirements/exception/
	generation_prohibited.cc: Likewise.
	* testsuite/23_containers/list/requirements/exception/
	propagation_consistent.cc: Likewise.
	* testsuite/23_containers/list/requirements/
	explicit_instantiation/1_c++0x.cc: Likewise.
	* testsuite/23_containers/list/requirements/
	explicit_instantiation/5_c++0x.cc: Likewise.
	* testsuite/23_containers/list/requirements/typedefs.cc: Likewise.
	* testsuite/23_containers/map/cons/moveable.cc: Likewise.
	* testsuite/23_containers/map/cons/noexcept_move_construct.cc: Likewise.
	* testsuite/23_containers/map/element_access/2.cc: Likewise.
	* testsuite/23_containers/map/element_access/39901.cc: Likewise.
	* testsuite/23_containers/map/element_access/46148.cc: Likewise.
	* testsuite/23_containers/map/init-list.cc: Likewise.
	* testsuite/23_containers/map/modifiers/dr130.cc: Likewise.
	* testsuite/23_containers/map/modifiers/erase/51142.cc: Likewise.
	* testsuite/23_containers/map/modifiers/insert/2.cc: Likewise.
	* testsuite/23_containers/map/modifiers/insert/3.cc: Likewise.
	* testsuite/23_containers/map/modifiers/insert/4.cc: Likewise.
	* testsuite/23_containers/map/modifiers/insert/5.cc: Likewise.
	* testsuite/23_containers/map/range_access.cc: Likewise.
	* testsuite/23_containers/map/requirements/citerators.cc: Likewise.
	* testsuite/23_containers/map/requirements/exception/basic.cc: Likewise.
	* testsuite/23_containers/map/requirements/exception/
	generation_prohibited.cc: Likewise.
	* testsuite/23_containers/map/requirements/exception/
	propagation_consistent.cc: Likewise.
	* testsuite/23_containers/map/requirements/
	explicit_instantiation/1_c++0x.cc: Likewise.
	* testsuite/23_containers/map/requirements/
	explicit_instantiation/5_c++0x.cc: Likewise.
	* testsuite/23_containers/map/requirements/typedefs.cc: Likewise.
	* testsuite/23_containers/multimap/cons/moveable.cc: Likewise.
	* testsuite/23_containers/multimap/cons/
	noexcept_move_construct.cc: Likewise.
	* testsuite/23_containers/multimap/init-list.cc: Likewise.
	* testsuite/23_containers/multimap/modifiers/dr130.cc: Likewise.
	* testsuite/23_containers/multimap/modifiers/erase/51142.cc: Likewise.
	* testsuite/23_containers/multimap/modifiers/insert/1.cc: Likewise.
	* testsuite/23_containers/multimap/modifiers/insert/2.cc: Likewise.
	* testsuite/23_containers/multimap/modifiers/insert/3.cc: Likewise.
	* testsuite/23_containers/multimap/modifiers/insert/4.cc: Likewise.
	* testsuite/23_containers/multimap/range_access.cc: Likewise.
	* testsuite/23_containers/multimap/requirements/citerators.cc: Likewise.
	* testsuite/23_containers/multimap/requirements/exception/
	basic.cc: Likewise.
	* testsuite/23_containers/multimap/requirements/exception/
	generation_prohibited.cc: Likewise.
	* testsuite/23_containers/multimap/requirements/exception/
	propagation_consistent.cc: Likewise.
	* testsuite/23_containers/multimap/requirements/
	explicit_instantiation/1_c++0x.cc: Likewise.
	* testsuite/23_containers/multimap/requirements/
	explicit_instantiation/5_c++0x.cc: Likewise.
	* testsuite/23_containers/multimap/requirements/typedefs.cc: Likewise.
	* testsuite/23_containers/multiset/cons/moveable.cc: Likewise.
	* testsuite/23_containers/multiset/cons/
	noexcept_move_construct.cc: Likewise.
	* testsuite/23_containers/multiset/init-list.cc: Likewise.
	* testsuite/23_containers/multiset/modifiers/dr130.cc: Likewise.
	* testsuite/23_containers/multiset/modifiers/erase/51142.cc: Likewise.
	* testsuite/23_containers/multiset/modifiers/insert/3.cc: Likewise.
	* testsuite/23_containers/multiset/modifiers/insert/4.cc: Likewise.
	* testsuite/23_containers/multiset/range_access.cc: Likewise.
	* testsuite/23_containers/multiset/requirements/citerators.cc: Likewise.
	* testsuite/23_containers/multiset/requirements/exception/
	basic.cc: Likewise.
	* testsuite/23_containers/multiset/requirements/exception/
	generation_prohibited.cc: Likewise.
	* testsuite/23_containers/multiset/requirements/exception/
	propagation_consistent.cc: Likewise.
	* testsuite/23_containers/multiset/requirements/
	explicit_instantiation/1_c++0x.cc: Likewise.
	* testsuite/23_containers/multiset/requirements/
	explicit_instantiation/5_c++0x.cc: Likewise.
	* testsuite/23_containers/multiset/requirements/typedefs.cc: Likewise.
	* testsuite/23_containers/priority_queue/moveable.cc: Likewise.
	* testsuite/23_containers/priority_queue/requirements/
	explicit_instantiation/1_c++0x.cc: Likewise.
	* testsuite/23_containers/priority_queue/requirements/
	typedefs.cc: Likewise.
	* testsuite/23_containers/queue/moveable.cc: Likewise.
	* testsuite/23_containers/queue/requirements/
	explicit_instantiation/1_c++0x.cc: Likewise.
	* testsuite/23_containers/queue/requirements/typedefs.cc: Likewise.
	* testsuite/23_containers/set/cons/moveable.cc: Likewise.
	* testsuite/23_containers/set/cons/noexcept_move_construct.cc: Likewise.
	* testsuite/23_containers/set/init-list.cc: Likewise.
	* testsuite/23_containers/set/modifiers/dr130.cc: Likewise.
	* testsuite/23_containers/set/modifiers/erase/51142.cc: Likewise.
	* testsuite/23_containers/set/modifiers/insert/2.cc: Likewise.
	* testsuite/23_containers/set/modifiers/insert/3.cc: Likewise.
	* testsuite/23_containers/set/range_access.cc: Likewise.
	* testsuite/23_containers/set/requirements/citerators.cc: Likewise.
	* testsuite/23_containers/set/requirements/exception/basic.cc: Likewise.
	* testsuite/23_containers/set/requirements/exception/
	generation_prohibited.cc: Likewise.
	* testsuite/23_containers/set/requirements/exception/
	propagation_consistent.cc: Likewise.
	* testsuite/23_containers/set/requirements/
	explicit_instantiation/1_c++0x.cc: Likewise.
	* testsuite/23_containers/set/requirements/
	explicit_instantiation/5_c++0x.cc: Likewise.
	* testsuite/23_containers/set/requirements/typedefs.cc: Likewise.
	* testsuite/23_containers/stack/requirements/
	explicit_instantiation/1_c++0x.cc: Likewise.
	* testsuite/23_containers/stack/requirements/typedefs.cc: Likewise.
	* testsuite/23_containers/unordered_map/55043.cc: Likewise.
	* testsuite/23_containers/unordered_map/cons/56112.cc: Likewise.
	* testsuite/23_containers/unordered_map/cons/moveable.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/
	construct1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/
	construct2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/
	construct3_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/
	construct4_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/insert1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/insert2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/insert3_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/insert4_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/
	invalid_local_iterator_compare_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/
	invalid_local_iterator_range_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/
	use_erased_local_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/
	use_invalid_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/debug/
	use_invalid_local_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_map/dr761.cc: Likewise.
	* testsuite/23_containers/unordered_map/erase/1.cc: Likewise.
	* testsuite/23_containers/unordered_map/erase/24061-map.cc: Likewise.
	* testsuite/23_containers/unordered_map/erase/51142.cc: Likewise.
	* testsuite/23_containers/unordered_map/erase/54276.cc: Likewise.
	* testsuite/23_containers/unordered_map/final_hash.cc: Likewise.
	* testsuite/23_containers/unordered_map/hash_policy/dr1189.cc: Likewise.
	* testsuite/23_containers/unordered_map/init-list.cc: Likewise.
	* testsuite/23_containers/unordered_map/insert/24061-map.cc: Likewise.
	* testsuite/23_containers/unordered_map/insert/
	array_syntax.cc: Likewise.
	* testsuite/23_containers/unordered_map/insert/
	array_syntax_move.cc: Likewise.
	* testsuite/23_containers/unordered_map/insert/map_range.cc: Likewise.
	* testsuite/23_containers/unordered_map/insert/map_single.cc: Likewise.
	* testsuite/23_containers/unordered_map/insert/
	map_single_move-1.cc: Likewise.
	* testsuite/23_containers/unordered_map/insert/
	map_single_move-2.cc: Likewise.
	* testsuite/23_containers/unordered_map/modifiers/emplace.cc: Likewise.
	* testsuite/23_containers/unordered_map/modifiers/reserve.cc: Likewise.
	* testsuite/23_containers/unordered_map/observers.cc: Likewise.
	* testsuite/23_containers/unordered_map/operations/count.cc: Likewise.
	* testsuite/23_containers/unordered_map/operators/1.cc: Likewise.
	* testsuite/23_containers/unordered_map/profile/unordered.cc: Likewise.
	* testsuite/23_containers/unordered_map/range_access.cc: Likewise.
	* testsuite/23_containers/unordered_map/requirements/
	citerators.cc: Likewise.
	* testsuite/23_containers/unordered_map/requirements/
	cliterators.cc: Likewise.
	* testsuite/23_containers/unordered_map/requirements/
	debug_mode.cc: Likewise.
	* testsuite/23_containers/unordered_map/requirements/
	exception/basic.cc: Likewise.
	* testsuite/23_containers/unordered_map/requirements/
	exception/generation_prohibited.cc: Likewise.
	* testsuite/23_containers/unordered_map/requirements/
	exception/propagation_consistent.cc: Likewise.
	* testsuite/23_containers/unordered_map/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/23_containers/unordered_map/requirements/
	explicit_instantiation/2.cc: Likewise.
	* testsuite/23_containers/unordered_map/requirements/
	explicit_instantiation/4.cc: Likewise.
	* testsuite/23_containers/unordered_map/requirements/
	explicit_instantiation/5.cc: Likewise.
	* testsuite/23_containers/unordered_map/requirements/
	typedefs.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/55043.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/cons/moveable.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	construct1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	construct2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	construct3_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	construct4_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	insert1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	insert2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	insert3_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	insert4_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	invalid_local_iterator_compare_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	invalid_local_iterator_range_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	use_erased_local_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	use_invalid_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/debug/
	use_invalid_local_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/erase/1.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/erase/2.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/erase/
	24061-multimap.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/erase/51142.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/erase/
	51845-multimap.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/erase/54276.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/final_hash.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/hash_policy/
	dr1189.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/init-list.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/insert/
	24061-multimap.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/insert/51866.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/insert/52476.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/insert/
	multimap_range.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/insert/
	multimap_single.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/insert/
	multimap_single_move-1.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/insert/
	multimap_single_move-2.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/modifiers/
	emplace.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/modifiers/
	reserve.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/observers.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/operations/
	count.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/operators/1.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/operators/2.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/range_access.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/requirements/
	citerators.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/requirements/
	cliterators.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/requirements/
	exception/basic.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/requirements/
	exception/generation_prohibited.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/requirements/
	exception/propagation_consistent.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/requirements/
	explicit_instantiation/2.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/requirements/
	explicit_instantiation/4.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/requirements/
	explicit_instantiation/5.cc: Likewise.
	* testsuite/23_containers/unordered_multimap/requirements/
	typedefs.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/55043.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/cons/copy.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/cons/moveable.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	construct1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	construct2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	construct3_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	construct4_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	insert1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	insert2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	insert3_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	insert4_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	invalid_local_iterator_compare_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	invalid_local_iterator_range_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	use_erased_local_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	use_invalid_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/debug/
	use_invalid_local_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/erase/1.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/erase/2.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/erase/
	24061-multiset.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/erase/51142.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/final_hash.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/hash_policy/
	dr1189.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/init-list.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/insert/
	24061-multiset.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/insert/51866.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/insert/52476.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/insert/
	hash_policy.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/insert/
	multiset_range.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/insert/
	multiset_single.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/insert/
	multiset_single_move.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/modifiers/
	emplace.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/modifiers/
	reserve.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/observers.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/operations/
	count.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/operators/1.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/range_access.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/requirements/
	citerators.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/requirements/
	cliterators.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/requirements/
	exception/basic.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/requirements/
	exception/generation_prohibited.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/requirements/
	exception/propagation_consistent.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/requirements/
	explicit_instantiation/2.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/requirements/
	explicit_instantiation/4.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/requirements/
	explicit_instantiation/5.cc: Likewise.
	* testsuite/23_containers/unordered_multiset/requirements/
	typedefs.cc: Likewise.
	* testsuite/23_containers/unordered_set/55043.cc: Likewise.
	* testsuite/23_containers/unordered_set/56267.cc: Likewise.
	* testsuite/23_containers/unordered_set/56278.cc: Likewise.
	* testsuite/23_containers/unordered_set/cons/moveable.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/
	construct1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/
	construct2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/
	construct3_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/
	construct4_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/insert1_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/insert2_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/insert3_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/insert4_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/
	invalid_local_iterator_compare_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/
	invalid_local_iterator_range_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/
	use_erased_local_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/
	use_invalid_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/debug/
	use_invalid_local_iterator_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/erase/1.cc: Likewise.
	* testsuite/23_containers/unordered_set/erase/24061-set.cc: Likewise.
	* testsuite/23_containers/unordered_set/erase/51142.cc: Likewise.
	* testsuite/23_containers/unordered_set/final_hash.cc: Likewise.
	* testsuite/23_containers/unordered_set/hash_policy/26132.cc: Likewise.
	* testsuite/23_containers/unordered_set/hash_policy/dr1189.cc: Likewise.
	* testsuite/23_containers/unordered_set/hash_policy/
	load_factor.cc: Likewise.
	* testsuite/23_containers/unordered_set/hash_policy/rehash.cc: Likewise.
	* testsuite/23_containers/unordered_set/init-list.cc: Likewise.
	* testsuite/23_containers/unordered_set/insert/24061-set.cc: Likewise.
	* testsuite/23_containers/unordered_set/insert/hash_policy.cc: Likewise.
	* testsuite/23_containers/unordered_set/insert/set_range.cc: Likewise.
	* testsuite/23_containers/unordered_set/insert/set_single.cc: Likewise.
	* testsuite/23_containers/unordered_set/insert/
	set_single_move.cc: Likewise.
	* testsuite/23_containers/unordered_set/instantiation_neg.cc: Likewise.
	* testsuite/23_containers/unordered_set/max_load_factor/
	robustness.cc: Likewise.
	* testsuite/23_containers/unordered_set/modifiers/emplace.cc: Likewise.
	* testsuite/23_containers/unordered_set/modifiers/reserve.cc: Likewise.
	* testsuite/23_containers/unordered_set/observers.cc: Likewise.
	* testsuite/23_containers/unordered_set/operations/count.cc: Likewise.
	* testsuite/23_containers/unordered_set/operators/1.cc: Likewise.
	* testsuite/23_containers/unordered_set/operators/52309.cc: Likewise.
	* testsuite/23_containers/unordered_set/range_access.cc: Likewise.
	* testsuite/23_containers/unordered_set/requirements/
	citerators.cc: Likewise.
	* testsuite/23_containers/unordered_set/requirements/
	cliterators.cc: Likewise.
	* testsuite/23_containers/unordered_set/requirements/
	debug_mode.cc: Likewise.
	* testsuite/23_containers/unordered_set/requirements/
	exception/basic.cc: Likewise.
	* testsuite/23_containers/unordered_set/requirements/
	exception/generation_prohibited.cc: Likewise.
	* testsuite/23_containers/unordered_set/requirements/
	exception/propagation_consistent.cc: Likewise.
	* testsuite/23_containers/unordered_set/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/23_containers/unordered_set/requirements/
	explicit_instantiation/2.cc: Likewise.
	* testsuite/23_containers/unordered_set/requirements/
	explicit_instantiation/4.cc: Likewise.
	* testsuite/23_containers/unordered_set/requirements/
	explicit_instantiation/5.cc: Likewise.
	* testsuite/23_containers/unordered_set/requirements/
	typedefs.cc: Likewise.
	* testsuite/23_containers/vector/52591.cc: Likewise.
	* testsuite/23_containers/vector/allocator/copy_assign.cc: Likewise.
	* testsuite/23_containers/vector/allocator/minimal.cc: Likewise.
	* testsuite/23_containers/vector/allocator/move_assign.cc: Likewise.
	* testsuite/23_containers/vector/allocator/noexcept.cc: Likewise.
	* testsuite/23_containers/vector/allocator/swap.cc: Likewise.
	* testsuite/23_containers/vector/bool/capacity/
	shrink_to_fit.cc: Likewise.
	* testsuite/23_containers/vector/bool/cons/
	noexcept_move_construct.cc: Likewise.
	* testsuite/23_containers/vector/bool/hash/1.cc: Likewise.
	* testsuite/23_containers/vector/bool/requirements/
	citerators.cc: Likewise.
	* testsuite/23_containers/vector/capacity/reserve/moveable.cc: Likewise.
	* testsuite/23_containers/vector/capacity/reserve/
	moveable2.cc: Likewise.
	* testsuite/23_containers/vector/capacity/resize/moveable.cc: Likewise.
	* testsuite/23_containers/vector/capacity/resize/moveable2.cc: Likewise.
	* testsuite/23_containers/vector/capacity/resize/
	resize_size.cc: Likewise.
	* testsuite/23_containers/vector/capacity/shrink_to_fit.cc: Likewise.
	* testsuite/23_containers/vector/capacity/shrink_to_fit2.cc: Likewise.
	* testsuite/23_containers/vector/cons/cons_size.cc: Likewise.
	* testsuite/23_containers/vector/cons/moveable.cc: Likewise.
	* testsuite/23_containers/vector/cons/moveable2.cc: Likewise.
	* testsuite/23_containers/vector/cons/
	noexcept_move_construct.cc: Likewise.
	* testsuite/23_containers/vector/debug/52433.cc: Likewise.
	* testsuite/23_containers/vector/debug/bool/shrink_to_fit.cc: Likewise.
	* testsuite/23_containers/vector/debug/multithreaded_swap.cc: Likewise.
	* testsuite/23_containers/vector/debug/shrink_to_fit.cc: Likewise.
	* testsuite/23_containers/vector/ext_pointer/citerators.cc: Likewise.
	* testsuite/23_containers/vector/ext_pointer/
	explicit_instantiation/2.cc: Likewise.
	* testsuite/23_containers/vector/ext_pointer/types/2.cc: Likewise.
	* testsuite/23_containers/vector/init-list.cc: Likewise.
	* testsuite/23_containers/vector/modifiers/erase/50529.cc: Likewise.
	* testsuite/23_containers/vector/modifiers/erase/moveable.cc: Likewise.
	* testsuite/23_containers/vector/modifiers/moveable.cc: Likewise.
	* testsuite/23_containers/vector/modifiers/moveable2.cc: Likewise.
	* testsuite/23_containers/vector/modifiers/push_back/49836.cc: Likewise.
	* testsuite/23_containers/vector/range_access.cc: Likewise.
	* testsuite/23_containers/vector/requirements/citerators.cc: Likewise.
	* testsuite/23_containers/vector/requirements/
	do_the_right_thing.cc: Likewise.
	* testsuite/23_containers/vector/requirements/exception/
	basic.cc: Likewise.
	* testsuite/23_containers/vector/requirements/exception/
	generation_prohibited.cc: Likewise.
	* testsuite/23_containers/vector/requirements/exception/
	propagation_consistent.cc: Likewise.
	* testsuite/23_containers/vector/requirements/
	explicit_instantiation/1_c++0x.cc: Likewise.
	* testsuite/23_containers/vector/requirements/typedefs.cc: Likewise.
	* testsuite/27_io/basic_filebuf/open/char/5.cc: Likewise.
	* testsuite/27_io/basic_fstream/cons/char/1.cc: Likewise.
	* testsuite/27_io/basic_fstream/open/char/1.cc: Likewise.
	* testsuite/27_io/basic_ifstream/cons/char/2.cc: Likewise.
	* testsuite/27_io/basic_ifstream/open/char/2.cc: Likewise.
	* testsuite/27_io/basic_ofstream/cons/char/2.cc: Likewise.
	* testsuite/27_io/basic_ofstream/open/char/2.cc: Likewise.
	* testsuite/27_io/basic_ostream/inserters_other/char/
	error_code.cc: Likewise.
	* testsuite/27_io/basic_ostream/inserters_other/wchar_t/
	error_code.cc: Likewise.
	* testsuite/27_io/headers/cinttypes/types_std_c++0x.cc: Likewise.
	* testsuite/27_io/ios_base/types/fmtflags/
	constexpr_operators.cc: Likewise.
	* testsuite/27_io/ios_base/types/iostate/
	constexpr_operators.cc: Likewise.
	* testsuite/27_io/ios_base/types/openmode/
	constexpr_operators.cc: Likewise.
	* testsuite/27_io/manipulators/extended/get_money/char/1.cc: Likewise.
	* testsuite/27_io/manipulators/extended/get_money/char/
	51288.cc: Likewise.
	* testsuite/27_io/manipulators/extended/get_money/wchar_t/
	1.cc: Likewise.
	* testsuite/27_io/manipulators/extended/get_money/wchar_t/
	51288.cc: Likewise.
	* testsuite/27_io/manipulators/extended/put_money/char/1.cc: Likewise.
	* testsuite/27_io/manipulators/extended/put_money/char/
	51288.cc: Likewise.
	* testsuite/27_io/manipulators/extended/put_money/wchar_t/
	1.cc: Likewise.
	* testsuite/27_io/manipulators/extended/put_money/wchar_t/
	51288.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_replace/char/51711.cc: Likewise.
	* testsuite/28_regex/algorithms/regex_replace/wchar_t/
	51711.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/char/cstring_op.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/char/moveable.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/char/pstring.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/char/range.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/char/string.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/char/string_op.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/wchar_t/cstring.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/wchar_t/cstring_op.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/wchar_t/pstring.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/wchar_t/range.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/wchar_t/string.cc: Likewise.
	* testsuite/28_regex/basic_regex/assign/wchar_t/string_op.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/47724.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/basic/pstring_char.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/basic/
	string_range_01_02_03.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/char/cstring.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/char/default.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/char/range.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/extended/
	string_range_01_02_03.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/move_char.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/string_char.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/string_wchar_t.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/wchar_t/cstring.cc: Likewise.
	* testsuite/28_regex/basic_regex/ctors/wchar_t/default.cc: Likewise.
	* testsuite/28_regex/basic_regex/requirements/
	constexpr_data.cc: Likewise.
	* testsuite/28_regex/init-list.cc: Likewise.
	* testsuite/28_regex/iterators/regex_token_iterator/ctors/
	wchar_t/default.cc: Likewise.
	* testsuite/28_regex/range_access.cc: Likewise.
	* testsuite/28_regex/traits/char/ctor.cc: Likewise.
	* testsuite/28_regex/traits/char/translate_nocase.cc: Likewise.
	* testsuite/28_regex/traits/char/value.cc: Likewise.
	* testsuite/28_regex/traits/wchar_t/ctor.cc: Likewise.
	* testsuite/28_regex/traits/wchar_t/translate_nocase.cc: Likewise.
	* testsuite/28_regex/traits/wchar_t/value.cc: Likewise.
	* testsuite/29_atomics/atomic/cons/49445.cc: Likewise.
	* testsuite/29_atomics/atomic/cons/assign_neg.cc: Likewise.
	* testsuite/29_atomics/atomic/cons/constexpr.cc: Likewise.
	* testsuite/29_atomics/atomic/cons/copy_list.cc: Likewise.
	* testsuite/29_atomics/atomic/cons/copy_neg.cc: Likewise.
	* testsuite/29_atomics/atomic/cons/default.cc: Likewise.
	* testsuite/29_atomics/atomic/cons/direct_list.cc: Likewise.
	* testsuite/29_atomics/atomic/cons/single_value.cc: Likewise.
	* testsuite/29_atomics/atomic/cons/user_pod.cc: Likewise.
	* testsuite/29_atomics/atomic/operators/51811.cc: Likewise.
	* testsuite/29_atomics/atomic/operators/56011.cc: Likewise.
	* testsuite/29_atomics/atomic/operators/
	integral_assignment.cc: Likewise.
	* testsuite/29_atomics/atomic/operators/
	integral_conversion.cc: Likewise.
	* testsuite/29_atomics/atomic/operators/
	pointer_partial_void.cc: Likewise.
	* testsuite/29_atomics/atomic/requirements/base_classes.cc: Likewise.
	* testsuite/29_atomics/atomic/requirements/
	explicit_instantiation/1.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/clear/1.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/cons/1.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/cons/56012.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/cons/aggregate.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/cons/assign_neg.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/cons/copy_neg.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/cons/default.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/requirements/
	standard_layout.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/requirements/trivial.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/test_and_set/
	explicit-hle.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/test_and_set/explicit.cc: Likewise.
	* testsuite/29_atomics/atomic_flag/test_and_set/implicit.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/cons/assign_neg.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/cons/constexpr.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/cons/copy_list.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/cons/copy_neg.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/cons/default.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/cons/direct_list.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/cons/single_value.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/operators/bitwise.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/operators/
	bitwise_neg.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/operators/
	decrement.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/operators/
	decrement_neg.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/operators/
	increment.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/operators/
	increment_neg.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/operators/
	integral_assignment.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/operators/
	integral_conversion.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/requirements/
	standard_layout.cc: Likewise.
	* testsuite/29_atomics/atomic_integral/requirements/
	trivial.cc: Likewise.
	* testsuite/29_atomics/headers/atomic/functions_std_c++0x.cc: Likewise.
	* testsuite/29_atomics/headers/atomic/macros.cc: Likewise.
	* testsuite/29_atomics/headers/atomic/types_std_c++0x.cc: Likewise.
	* testsuite/29_atomics/headers/atomic/types_std_c++0x_neg.cc: Likewise.
	* testsuite/30_threads/async/42819.cc: Likewise.
	* testsuite/30_threads/async/49668.cc: Likewise.
	* testsuite/30_threads/async/54297.cc: Likewise.
	* testsuite/30_threads/async/any.cc: Likewise.
	* testsuite/30_threads/async/async.cc: Likewise.
	* testsuite/30_threads/async/launch.cc: Likewise.
	* testsuite/30_threads/async/sync.cc: Likewise.
	* testsuite/30_threads/call_once/39909.cc: Likewise.
	* testsuite/30_threads/call_once/49668.cc: Likewise.
	* testsuite/30_threads/call_once/call_once1.cc: Likewise.
	* testsuite/30_threads/call_once/constexpr.cc: Likewise.
	* testsuite/30_threads/call_once/once_flag.cc: Likewise.
	* testsuite/30_threads/condition_variable/54185.cc: Likewise.
	* testsuite/30_threads/condition_variable/cons/1.cc: Likewise.
	* testsuite/30_threads/condition_variable/cons/assign_neg.cc: Likewise.
	* testsuite/30_threads/condition_variable/cons/copy_neg.cc: Likewise.
	* testsuite/30_threads/condition_variable/members/1.cc: Likewise.
	* testsuite/30_threads/condition_variable/members/2.cc: Likewise.
	* testsuite/30_threads/condition_variable/members/53841.cc: Likewise.
	* testsuite/30_threads/condition_variable/native_handle/
	typesizes.cc: Likewise.
	* testsuite/30_threads/condition_variable/requirements/
	standard_layout.cc: Likewise.
	* testsuite/30_threads/condition_variable/requirements/
	typedefs.cc: Likewise.
	* testsuite/30_threads/condition_variable_any/50862.cc: Likewise.
	* testsuite/30_threads/condition_variable_any/53830.cc: Likewise.
	* testsuite/30_threads/condition_variable_any/cons/1.cc: Likewise.
	* testsuite/30_threads/condition_variable_any/cons/
	assign_neg.cc: Likewise.
	* testsuite/30_threads/condition_variable_any/cons/
	copy_neg.cc: Likewise.
	* testsuite/30_threads/condition_variable_any/members/1.cc: Likewise.
	* testsuite/30_threads/condition_variable_any/members/2.cc: Likewise.
	* testsuite/30_threads/future/cons/assign_neg.cc: Likewise.
	* testsuite/30_threads/future/cons/constexpr.cc: Likewise.
	* testsuite/30_threads/future/cons/copy_neg.cc: Likewise.
	* testsuite/30_threads/future/cons/default.cc: Likewise.
	* testsuite/30_threads/future/cons/move.cc: Likewise.
	* testsuite/30_threads/future/cons/move_assign.cc: Likewise.
	* testsuite/30_threads/future/members/45133.cc: Likewise.
	* testsuite/30_threads/future/members/get.cc: Likewise.
	* testsuite/30_threads/future/members/get2.cc: Likewise.
	* testsuite/30_threads/future/members/share.cc: Likewise.
	* testsuite/30_threads/future/members/valid.cc: Likewise.
	* testsuite/30_threads/future/members/wait.cc: Likewise.
	* testsuite/30_threads/future/members/wait_for.cc: Likewise.
	* testsuite/30_threads/future/members/wait_until.cc: Likewise.
	* testsuite/30_threads/future/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/30_threads/headers/condition_variable/
	types_std_c++0x.cc: Likewise.
	* testsuite/30_threads/headers/future/types_std_c++0x.cc: Likewise.
	* testsuite/30_threads/headers/mutex/types_std_c++0x.cc: Likewise.
	* testsuite/30_threads/headers/thread/types_std_c++0x.cc: Likewise.
	* testsuite/30_threads/lock/1.cc: Likewise.
	* testsuite/30_threads/lock/2.cc: Likewise.
	* testsuite/30_threads/lock/3.cc: Likewise.
	* testsuite/30_threads/lock/4.cc: Likewise.
	* testsuite/30_threads/lock_guard/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/30_threads/lock_guard/requirements/typedefs.cc: Likewise.
	* testsuite/30_threads/mutex/cons/1.cc: Likewise.
	* testsuite/30_threads/mutex/cons/assign_neg.cc: Likewise.
	* testsuite/30_threads/mutex/cons/constexpr.cc: Likewise.
	* testsuite/30_threads/mutex/cons/copy_neg.cc: Likewise.
	* testsuite/30_threads/mutex/dest/destructor_locked.cc: Likewise.
	* testsuite/30_threads/mutex/lock/1.cc: Likewise.
	* testsuite/30_threads/mutex/native_handle/1.cc: Likewise.
	* testsuite/30_threads/mutex/native_handle/typesizes.cc: Likewise.
	* testsuite/30_threads/mutex/requirements/standard_layout.cc: Likewise.
	* testsuite/30_threads/mutex/requirements/typedefs.cc: Likewise.
	* testsuite/30_threads/mutex/try_lock/1.cc: Likewise.
	* testsuite/30_threads/mutex/try_lock/2.cc: Likewise.
	* testsuite/30_threads/mutex/unlock/1.cc: Likewise.
	* testsuite/30_threads/once_flag/cons/constexpr.cc: Likewise.
	* testsuite/30_threads/packaged_task/49668.cc: Likewise.
	* testsuite/30_threads/packaged_task/cons/1.cc: Likewise.
	* testsuite/30_threads/packaged_task/cons/2.cc: Likewise.
	* testsuite/30_threads/packaged_task/cons/3.cc: Likewise.
	* testsuite/30_threads/packaged_task/cons/alloc.cc: Likewise.
	* testsuite/30_threads/packaged_task/cons/alloc2.cc: Likewise.
	* testsuite/30_threads/packaged_task/cons/alloc_min.cc: Likewise.
	* testsuite/30_threads/packaged_task/cons/assign_neg.cc: Likewise.
	* testsuite/30_threads/packaged_task/cons/copy_neg.cc: Likewise.
	* testsuite/30_threads/packaged_task/cons/move.cc: Likewise.
	* testsuite/30_threads/packaged_task/cons/move_assign.cc: Likewise.
	* testsuite/30_threads/packaged_task/members/get_future.cc: Likewise.
	* testsuite/30_threads/packaged_task/members/get_future2.cc: Likewise.
	* testsuite/30_threads/packaged_task/members/invoke.cc: Likewise.
	* testsuite/30_threads/packaged_task/members/invoke2.cc: Likewise.
	* testsuite/30_threads/packaged_task/members/invoke3.cc: Likewise.
	* testsuite/30_threads/packaged_task/members/invoke4.cc: Likewise.
	* testsuite/30_threads/packaged_task/members/invoke5.cc: Likewise.
	* testsuite/30_threads/packaged_task/members/reset.cc: Likewise.
	* testsuite/30_threads/packaged_task/members/reset2.cc: Likewise.
	* testsuite/30_threads/packaged_task/members/swap.cc: Likewise.
	* testsuite/30_threads/packaged_task/members/valid.cc: Likewise.
	* testsuite/30_threads/packaged_task/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/30_threads/packaged_task/uses_allocator.cc: Likewise.
	* testsuite/30_threads/promise/cons/1.cc: Likewise.
	* testsuite/30_threads/promise/cons/alloc.cc: Likewise.
	* testsuite/30_threads/promise/cons/alloc2.cc: Likewise.
	* testsuite/30_threads/promise/cons/alloc_min.cc: Likewise.
	* testsuite/30_threads/promise/cons/assign_neg.cc: Likewise.
	* testsuite/30_threads/promise/cons/copy_neg.cc: Likewise.
	* testsuite/30_threads/promise/cons/move.cc: Likewise.
	* testsuite/30_threads/promise/cons/move_assign.cc: Likewise.
	* testsuite/30_threads/promise/members/get_future.cc: Likewise.
	* testsuite/30_threads/promise/members/get_future2.cc: Likewise.
	* testsuite/30_threads/promise/members/set_exception.cc: Likewise.
	* testsuite/30_threads/promise/members/set_exception2.cc: Likewise.
	* testsuite/30_threads/promise/members/set_value.cc: Likewise.
	* testsuite/30_threads/promise/members/set_value2.cc: Likewise.
	* testsuite/30_threads/promise/members/set_value3.cc: Likewise.
	* testsuite/30_threads/promise/members/swap.cc: Likewise.
	* testsuite/30_threads/promise/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/30_threads/promise/uses_allocator.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/cons/1.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/cons/assign_neg.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/cons/copy_neg.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/dest/
	destructor_locked.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/lock/1.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/native_handle/1.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/native_handle/
	typesizes.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/requirements/
	standard_layout.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/requirements/
	typedefs.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/try_lock/1.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/try_lock/2.cc: Likewise.
	* testsuite/30_threads/recursive_mutex/unlock/1.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/cons/1.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/cons/
	assign_neg.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/cons/
	copy_neg.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/dest/
	destructor_locked.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/lock/1.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/lock/2.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/
	native_handle/1.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/
	native_handle/typesizes.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/
	requirements/typedefs.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/try_lock/1.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/try_lock/2.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/
	try_lock_for/1.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/
	try_lock_for/2.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/
	try_lock_for/3.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/
	try_lock_until/1.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/
	try_lock_until/2.cc: Likewise.
	* testsuite/30_threads/recursive_timed_mutex/unlock/1.cc: Likewise.
	* testsuite/30_threads/shared_future/cons/assign.cc: Likewise.
	* testsuite/30_threads/shared_future/cons/constexpr.cc: Likewise.
	* testsuite/30_threads/shared_future/cons/copy.cc: Likewise.
	* testsuite/30_threads/shared_future/cons/default.cc: Likewise.
	* testsuite/30_threads/shared_future/cons/move.cc: Likewise.
	* testsuite/30_threads/shared_future/cons/move_assign.cc: Likewise.
	* testsuite/30_threads/shared_future/members/45133.cc: Likewise.
	* testsuite/30_threads/shared_future/members/get.cc: Likewise.
	* testsuite/30_threads/shared_future/members/get2.cc: Likewise.
	* testsuite/30_threads/shared_future/members/valid.cc: Likewise.
	* testsuite/30_threads/shared_future/members/wait.cc: Likewise.
	* testsuite/30_threads/shared_future/members/wait_for.cc: Likewise.
	* testsuite/30_threads/shared_future/members/wait_until.cc: Likewise.
	* testsuite/30_threads/shared_future/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/30_threads/this_thread/1.cc: Likewise.
	* testsuite/30_threads/this_thread/2.cc: Likewise.
	* testsuite/30_threads/this_thread/3.cc: Likewise.
	* testsuite/30_threads/this_thread/4.cc: Likewise.
	* testsuite/30_threads/thread/cons/1.cc: Likewise.
	* testsuite/30_threads/thread/cons/2.cc: Likewise.
	* testsuite/30_threads/thread/cons/3.cc: Likewise.
	* testsuite/30_threads/thread/cons/4.cc: Likewise.
	* testsuite/30_threads/thread/cons/49668.cc: Likewise.
	* testsuite/30_threads/thread/cons/5.cc: Likewise.
	* testsuite/30_threads/thread/cons/6.cc: Likewise.
	* testsuite/30_threads/thread/cons/7.cc: Likewise.
	* testsuite/30_threads/thread/cons/8.cc: Likewise.
	* testsuite/30_threads/thread/cons/9.cc: Likewise.
	* testsuite/30_threads/thread/cons/assign_neg.cc: Likewise.
	* testsuite/30_threads/thread/cons/copy_neg.cc: Likewise.
	* testsuite/30_threads/thread/cons/moveable.cc: Likewise.
	* testsuite/30_threads/thread/id/hash.cc: Likewise.
	* testsuite/30_threads/thread/id/operators.cc: Likewise.
	* testsuite/30_threads/thread/members/1.cc: Likewise.
	* testsuite/30_threads/thread/members/2.cc: Likewise.
	* testsuite/30_threads/thread/members/3.cc: Likewise.
	* testsuite/30_threads/thread/members/4.cc: Likewise.
	* testsuite/30_threads/thread/members/5.cc: Likewise.
	* testsuite/30_threads/thread/members/
	hardware_concurrency.cc: Likewise.
	* testsuite/30_threads/thread/native_handle/cancel.cc: Likewise.
	* testsuite/30_threads/thread/native_handle/typesizes.cc: Likewise.
	* testsuite/30_threads/thread/swap/1.cc: Likewise.
	* testsuite/30_threads/timed_mutex/cons/1.cc: Likewise.
	* testsuite/30_threads/timed_mutex/cons/assign_neg.cc: Likewise.
	* testsuite/30_threads/timed_mutex/cons/copy_neg.cc: Likewise.
	* testsuite/30_threads/timed_mutex/dest/destructor_locked.cc: Likewise.
	* testsuite/30_threads/timed_mutex/lock/1.cc: Likewise.
	* testsuite/30_threads/timed_mutex/native_handle/1.cc: Likewise.
	* testsuite/30_threads/timed_mutex/native_handle/
	typesizes.cc: Likewise.
	* testsuite/30_threads/timed_mutex/requirements/
	standard_layout.cc: Likewise.
	* testsuite/30_threads/timed_mutex/requirements/typedefs.cc: Likewise.
	* testsuite/30_threads/timed_mutex/try_lock/1.cc: Likewise.
	* testsuite/30_threads/timed_mutex/try_lock/2.cc: Likewise.
	* testsuite/30_threads/timed_mutex/try_lock_for/1.cc: Likewise.
	* testsuite/30_threads/timed_mutex/try_lock_for/2.cc: Likewise.
	* testsuite/30_threads/timed_mutex/try_lock_for/3.cc: Likewise.
	* testsuite/30_threads/timed_mutex/try_lock_until/1.cc: Likewise.
	* testsuite/30_threads/timed_mutex/try_lock_until/2.cc: Likewise.
	* testsuite/30_threads/timed_mutex/try_lock_until/57641.cc: Likewise.
	* testsuite/30_threads/timed_mutex/unlock/1.cc: Likewise.
	* testsuite/30_threads/try_lock/1.cc: Likewise.
	* testsuite/30_threads/try_lock/2.cc: Likewise.
	* testsuite/30_threads/try_lock/3.cc: Likewise.
	* testsuite/30_threads/try_lock/4.cc: Likewise.
	* testsuite/30_threads/unique_lock/cons/1.cc: Likewise.
	* testsuite/30_threads/unique_lock/cons/2.cc: Likewise.
	* testsuite/30_threads/unique_lock/cons/3.cc: Likewise.
	* testsuite/30_threads/unique_lock/cons/4.cc: Likewise.
	* testsuite/30_threads/unique_lock/cons/5.cc: Likewise.
	* testsuite/30_threads/unique_lock/cons/6.cc: Likewise.
	* testsuite/30_threads/unique_lock/locking/1.cc: Likewise.
	* testsuite/30_threads/unique_lock/locking/2.cc: Likewise.
	* testsuite/30_threads/unique_lock/locking/3.cc: Likewise.
	* testsuite/30_threads/unique_lock/locking/4.cc: Likewise.
	* testsuite/30_threads/unique_lock/modifiers/1.cc: Likewise.
	* testsuite/30_threads/unique_lock/modifiers/2.cc: Likewise.
	* testsuite/30_threads/unique_lock/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/30_threads/unique_lock/requirements/typedefs.cc: Likewise.
	* testsuite/ext/array_allocator/variadic_construct.cc: Likewise.
	* testsuite/ext/bitmap_allocator/variadic_construct.cc: Likewise.
	* testsuite/ext/iota/cxx0x.cc: Likewise.
	* testsuite/ext/is_heap/47709.cc: Likewise.
	* testsuite/ext/is_sorted/cxx0x.cc: Likewise.
	* testsuite/ext/malloc_allocator/variadic_construct.cc: Likewise.
	* testsuite/ext/mt_allocator/variadic_construct.cc: Likewise.
	* testsuite/ext/new_allocator/variadic_construct.cc: Likewise.
	* testsuite/ext/pool_allocator/variadic_construct.cc: Likewise.
	* testsuite/ext/profile/all.cc: Likewise.
	* testsuite/ext/rope/40299.cc: Likewise.
	* testsuite/ext/rope/44708.cc: Likewise.
	* testsuite/ext/rope/44963.cc: Likewise.
	* testsuite/ext/throw_allocator/variadic_construct.cc: Likewise.
	* testsuite/ext/vstring/capacity/shrink_to_fit.cc: Likewise.
	* testsuite/ext/vstring/cons/moveable.cc: Likewise.
	* testsuite/ext/vstring/cons/noexcept_move_construct.cc: Likewise.
	* testsuite/ext/vstring/element_access/char/front_back.cc: Likewise.
	* testsuite/ext/vstring/element_access/wchar_t/front_back.cc: Likewise.
	* testsuite/ext/vstring/hash/char/1.cc: Likewise.
	* testsuite/ext/vstring/hash/wchar_t/1.cc: Likewise.
	* testsuite/ext/vstring/init-list.cc: Likewise.
	* testsuite/ext/vstring/modifiers/assign/move_assign.cc: Likewise.
	* testsuite/ext/vstring/modifiers/pop_back/char/1.cc: Likewise.
	* testsuite/ext/vstring/modifiers/pop_back/wchar_t/1.cc: Likewise.
	* testsuite/ext/vstring/operators/1.cc: Likewise.
	* testsuite/ext/vstring/operators/2.cc: Likewise.
	* testsuite/ext/vstring/range_access.cc: Likewise.
	* testsuite/ext/vstring/requirements/citerators.cc: Likewise.
	* testsuite/ext/vstring/requirements/do_the_right_thing.cc: Likewise.
	* testsuite/ext/vstring/requirements/exception/basic.cc: Likewise.
	* testsuite/ext/vstring/requirements/exception/
	generation_prohibited.cc: Likewise.
	* testsuite/ext/vstring/requirements/exception/
	propagation_consistent.cc: Likewise.
	* testsuite/ext/vstring/requirements/explicit_instantiation/
	char16_t/1.cc: Likewise.
	* testsuite/ext/vstring/requirements/explicit_instantiation/
	char32_t/1.cc: Likewise.
	* testsuite/ext/vstring/requirements/typedefs.cc: Likewise.
	* testsuite/performance/23_containers/copy_construct/
	unordered_set.cc: Likewise.
	* testsuite/performance/23_containers/insert_erase/41975.cc: Likewise.
	* testsuite/tr1/3_function_objects/bind/cv_quals.cc: Likewise.
	* testsuite/tr1/3_function_objects/function/10.cc: Likewise.
	* testsuite/tr1/8_c_compatibility/cmath/51083.cc: Likewise.
	* testsuite/tr1/8_c_compatibility/complex/51083.cc: Likewise.
	* testsuite/tr1/headers/c++200x/complex.cc: Likewise.
	* testsuite/tr1/headers/c++200x/using_namespace_std_tr1.cc: Likewise.
	* testsuite/tr2/bases/requirements/explicit_instantiation.cc: Likewise.
	* testsuite/tr2/bases/requirements/typedefs.cc: Likewise.
	* testsuite/tr2/bases/value.cc: Likewise.
	* testsuite/tr2/direct_bases/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/tr2/direct_bases/requirements/typedefs.cc: Likewise.
	* testsuite/tr2/direct_bases/value.cc: Likewise.
	* testsuite/tr2/headers/all.cc: Likewise.
	* testsuite/tr2/headers/using_namespace_std_tr2.cc: Likewise.

[-- Attachment #3: patch_c0x_all_rest.bz2 --]
[-- Type: application/x-bzip, Size: 17119 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2014-10-16  8:06 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-15  9:44 [v3] Minimally exercise the other alias_decls in <type_traits> Paolo Carlini
2014-10-15  9:45 ` Jonathan Wakely
2014-10-15  9:48   ` Jonathan Wakely
2014-10-15 17:48     ` Mike Stump
2014-10-15  9:50   ` Paolo Carlini
2014-10-15 10:51     ` Paolo Carlini
2014-10-15 15:47       ` Paolo Carlini
2014-10-15 17:36         ` Mike Stump
2014-10-15 17:50           ` Paolo Carlini
2014-10-15 17:35       ` Mike Stump
2014-10-15 18:29   ` Paolo Carlini
2014-10-16  8:14     ` Paolo Carlini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).