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_stringbuf | |
| 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_stringbuf')
4 files changed, 6 insertions, 6 deletions
diff --git a/libstdc++-v3/testsuite/27_io/basic_stringbuf/1.cc b/libstdc++-v3/testsuite/27_io/basic_stringbuf/1.cc index a91deab2f1d..7841f3275c5 100644 --- a/libstdc++-v3/testsuite/27_io/basic_stringbuf/1.cc +++ b/libstdc++-v3/testsuite/27_io/basic_stringbuf/1.cc @@ -50,7 +50,7 @@ void test01() namespace test { using namespace std; - using __gnu_cxx_test::pod_char; + using __gnu_test::pod_char; typedef short type_t; template class basic_stringbuf<type_t, char_traits<type_t> >; template class basic_stringbuf<pod_char, char_traits<pod_char> >; diff --git a/libstdc++-v3/testsuite/27_io/basic_stringbuf/2.cc b/libstdc++-v3/testsuite/27_io/basic_stringbuf/2.cc index f40868a179f..940aa7a852a 100644 --- a/libstdc++-v3/testsuite/27_io/basic_stringbuf/2.cc +++ b/libstdc++-v3/testsuite/27_io/basic_stringbuf/2.cc @@ -33,7 +33,7 @@ namespace test { using namespace std; - using __gnu_cxx_test::pod_char; + using __gnu_test::pod_char; typedef short type_t; template class basic_stringbuf<type_t, char_traits<type_t> >; template class basic_stringbuf<pod_char, char_traits<pod_char> >; diff --git a/libstdc++-v3/testsuite/27_io/basic_stringbuf/4.cc b/libstdc++-v3/testsuite/27_io/basic_stringbuf/4.cc index cd4c4311c6a..fd2ddbd6acc 100644 --- a/libstdc++-v3/testsuite/27_io/basic_stringbuf/4.cc +++ b/libstdc++-v3/testsuite/27_io/basic_stringbuf/4.cc @@ -30,8 +30,8 @@ namespace test { using namespace std; - using __gnu_cxx_test::pod_char; - typedef __gnu_cxx_test::tracker_alloc<char> alloc_type; + using __gnu_test::pod_char; + typedef __gnu_test::tracker_alloc<char> alloc_type; template class basic_stringbuf<char, char_traits<char>, alloc_type>; } // test diff --git a/libstdc++-v3/testsuite/27_io/basic_stringbuf/imbue/char/9322.cc b/libstdc++-v3/testsuite/27_io/basic_stringbuf/imbue/char/9322.cc index 7006dda094a..549e59ef841 100644 --- a/libstdc++-v3/testsuite/27_io/basic_stringbuf/imbue/char/9322.cc +++ b/libstdc++-v3/testsuite/27_io/basic_stringbuf/imbue/char/9322.cc @@ -33,10 +33,10 @@ void test03() std::stringbuf 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 ); |

