Ensure pretty-printer test uses C++98 mode
authorJonathan Wakely <jwakely@redhat.com>
Thu, 26 Nov 2015 15:42:47 +0000 (15:42 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Thu, 26 Nov 2015 15:42:47 +0000 (15:42 +0000)
* testsuite/libstdc++-prettyprinters/simple.cc: Add -std=gnu++98 to
dg-options and avoid use of uniform-init.

From-SVN: r230973

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/libstdc++-prettyprinters/simple.cc

index e67687aa27a01634ce648f2f2806708495436d38..606349320cdb178d34d0acd24cbc29df97a6c270 100644 (file)
@@ -1,3 +1,8 @@
+2015-11-26  Jonathan Wakely  <jwakely@redhat.com>
+
+       * testsuite/libstdc++-prettyprinters/simple.cc: Add -std=gnu++98 to
+       dg-options and avoid use of uniform-init.
+
 2015-11-26  David Edelsohn  <dje.gcc@gmail.com>
 
        * configure: Regenerate.
index 68c4d83f42c5ae19900471f7832c341be3532911..e1956bfa528e18f00102856d83d80b372f083539 100644 (file)
@@ -1,7 +1,7 @@
 // If you modify this, please update simple11.cc and debug.cc as well.
 
 // { dg-do run }
-// { dg-options "-g -O0" }
+// { dg-options "-g -O0 -std=gnu++98" }
 
 // Copyright (C) 2011-2015 Free Software Foundation, Inc.
 //
@@ -74,7 +74,10 @@ main()
 // { dg-final { note-test mpiter {{first = "zardoz", second = 23}} } }
 
   // PR 67440
-  const std::set<int> const_intset = {2, 3};
+  std::set<int> intset;
+  intset.insert(2);
+  intset.insert(3);
+  const std::set<int> const_intset = intset;
 // { dg-final { note-test const_intset {std::set with 2 elements = {[0] = 2, [1] = 3}} } }
 
   std::set<std::string> sp;