diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-24 21:08:03 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-24 21:08:03 +0000 |
commit | 56dcf3ccc3624a63e3e38fa393d5c80a499e37b5 (patch) | |
tree | 1e8a2741e658100f5e110f744aa6da1a2ebcd359 /libstdc++-v3/testsuite/27_io/basic_streambuf/imbue | |
parent | 19bf118afd392e4619258db40f91c022dfcdfe95 (diff) | |
download | ppe42-gcc-56dcf3ccc3624a63e3e38fa393d5c80a499e37b5.tar.gz ppe42-gcc-56dcf3ccc3624a63e3e38fa393d5c80a499e37b5.zip |
2003-07-24 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/*: Change __gnu_cxx_test to __gnu_test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69761 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite/27_io/basic_streambuf/imbue')
-rw-r--r-- | libstdc++-v3/testsuite/27_io/basic_streambuf/imbue/char/9322.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/testsuite/27_io/basic_streambuf/imbue/char/9322.cc b/libstdc++-v3/testsuite/27_io/basic_streambuf/imbue/char/9322.cc index fee82668f9d..7dbfdc75562 100644 --- a/libstdc++-v3/testsuite/27_io/basic_streambuf/imbue/char/9322.cc +++ b/libstdc++-v3/testsuite/27_io/basic_streambuf/imbue/char/9322.cc @@ -53,10 +53,10 @@ void test08() testbuf ob; VERIFY( ob.getloc() == loc ); - locale::global(__gnu_cxx_test::try_named_locale("en_US")); + locale::global(__gnu_test::try_named_locale("en_US")); VERIFY( ob.getloc() == loc ); - locale loc_de = __gnu_cxx_test::try_named_locale("de_DE"); + locale loc_de = __gnu_test::try_named_locale("de_DE"); locale ret = ob.pubimbue(loc_de); VERIFY( ob.getloc() == loc_de ); VERIFY( ret == loc ); |