named_equivalence.cc: Fix.
authorPaolo Carlini <paolo.carlini@oracle.com>
Fri, 6 May 2011 15:55:39 +0000 (15:55 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Fri, 6 May 2011 15:55:39 +0000 (15:55 +0000)
2011-05-06  Paolo Carlini  <paolo.carlini@oracle.com>

* testsuite/22_locale/messages_byname/named_equivalence.cc: Fix.

From-SVN: r173494

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/22_locale/messages_byname/named_equivalence.cc

index 7b766dc339369623002015db84bb0ac1317d3391..ea642a1df74356ca721246b095c260ca63ab5c01 100644 (file)
@@ -1,3 +1,7 @@
+2011-05-06  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       * testsuite/22_locale/messages_byname/named_equivalence.cc: Fix.
+
 2011-05-04  Marc Glisse  <marc.glisse@normalesup.org>
 
        PR libstdc++/47913 (again)
index c1f9b3e9bf318df563ba18814e24421065d3a255..0408f9c7dcf5e5027c716b83311ca0fd237750ff 100644 (file)
@@ -2,7 +2,7 @@
 
 // 2001-07-17 Benjamin Kosnik  <bkoz@redhat.com>
 
-// Copyright (C) 2001, 2003, 2005, 2009 Free Software Foundation
+// Copyright (C) 2001, 2003, 2005, 2009, 2011 Free Software Foundation
 //
 // 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
@@ -62,8 +62,8 @@ void test01()
 
   // Check byname locale.
   catalog cat_byname = mssg_byname.open("libstdc++", loc_c, dir);
-  string s03 = mssg_byname.get(cat_de, 0, 0, "please");
-  string s04 = mssg_byname.get(cat_de, 0, 0, "thank you");
+  string s03 = mssg_byname.get(cat_byname, 0, 0, "please");
+  string s04 = mssg_byname.get(cat_byname, 0, 0, "thank you");
   VERIFY ( s03 == "bitte" );
   VERIFY ( s04 == "danke" );
   mssg_byname.close(cat_byname);