diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2001-09-20 09:07:37 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2001-09-20 09:07:37 +0000 |
commit | 9a92330f243b08ca44fcc9c6c443585b49436206 (patch) | |
tree | a1d6e86eb137ae3fdfc1670f15bbcfe5251f21a5 | |
parent | e08138aae3e518cc5e4063fa49b61c9e2a70c978 (diff) | |
download | gcc-9a92330f243b08ca44fcc9c6c443585b49436206.zip gcc-9a92330f243b08ca44fcc9c6c443585b49436206.tar.gz gcc-9a92330f243b08ca44fcc9c6c443585b49436206.tar.bz2 |
numpunct_members_char.cc (test01): Remove redundant sanity checks.
2001-09-20 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/22_locale/numpunct_members_char.cc (test01): Remove
redundant sanity checks.
* testsuite/22_locale/money_put_members_wchar_t.cc (test01): Same.
(test02): Same.
* testsuite/22_locale/money_put_members_char.cc (test01): Same.
(test02): Same.
* testsuite/22_locale/moneypunct_members_wchar_t.cc (test01): Same.
* testsuite/22_locale/moneypunct_members_char.cc (test01): Same.
* testsuite/22_locale/money_get_members_wchar_t.cc (test01): Same.
(test02): Same.
* testsuite/22_locale/money_get_members_char.cc (test01): Same.
(test02): Same.
From-SVN: r45703
8 files changed, 15 insertions, 121 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 762b18e..45145d0 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,18 @@ +2001-09-20 Benjamin Kosnik <bkoz@redhat.com> + + * testsuite/22_locale/numpunct_members_char.cc (test01): Remove + redundant sanity checks. + * testsuite/22_locale/money_put_members_wchar_t.cc (test01): Same. + (test02): Same. + * testsuite/22_locale/money_put_members_char.cc (test01): Same. + (test02): Same. + * testsuite/22_locale/moneypunct_members_wchar_t.cc (test01): Same. + * testsuite/22_locale/moneypunct_members_char.cc (test01): Same. + * testsuite/22_locale/money_get_members_wchar_t.cc (test01): Same. + (test02): Same. + * testsuite/22_locale/money_get_members_char.cc (test01): Same. + (test02): Same. + 2001-09-19 Benjamin Kosnik <bkoz@redhat.com> Implement std::time_put. diff --git a/libstdc++-v3/testsuite/22_locale/money_get_members_char.cc b/libstdc++-v3/testsuite/22_locale/money_get_members_char.cc index a3e8ad6..86d59e8 100644 --- a/libstdc++-v3/testsuite/22_locale/money_get_members_char.cc +++ b/libstdc++-v3/testsuite/22_locale/money_get_members_char.cc @@ -36,24 +36,13 @@ void test01() typedef istreambuf_iterator<char> iterator_type; bool test = true; - string str; // basic construction locale loc_c = locale::classic(); - str = loc_c.name(); - locale loc_hk("en_HK"); - str = loc_hk.name(); - VERIFY( loc_c != loc_hk ); - locale loc_fr("fr_FR@euro"); - str = loc_fr.name(); - VERIFY( loc_c != loc_fr ); - locale loc_de("de_DE"); - str = loc_de.name(); VERIFY( loc_c != loc_de ); - VERIFY( loc_hk != loc_fr ); VERIFY( loc_hk != loc_de ); VERIFY( loc_de != loc_fr ); @@ -192,24 +181,13 @@ void test02() typedef istreambuf_iterator<char> iterator_type; bool test = true; - string str; // basic construction locale loc_c = locale::classic(); - str = loc_c.name(); - locale loc_hk("en_HK"); - str = loc_hk.name(); - VERIFY( loc_c != loc_hk ); - locale loc_fr("fr_FR@euro"); - str = loc_fr.name(); - VERIFY( loc_c != loc_fr ); - locale loc_de("de_DE"); - str = loc_de.name(); VERIFY( loc_c != loc_de ); - VERIFY( loc_hk != loc_fr ); VERIFY( loc_hk != loc_de ); VERIFY( loc_de != loc_fr ); diff --git a/libstdc++-v3/testsuite/22_locale/money_get_members_wchar_t.cc b/libstdc++-v3/testsuite/22_locale/money_get_members_wchar_t.cc index da8fdfd..9426c97 100644 --- a/libstdc++-v3/testsuite/22_locale/money_get_members_wchar_t.cc +++ b/libstdc++-v3/testsuite/22_locale/money_get_members_wchar_t.cc @@ -37,24 +37,13 @@ void test01() typedef istreambuf_iterator<wchar_t> iterator_type; bool test = true; - string str; // basic construction locale loc_c = locale::classic(); - str = loc_c.name(); - locale loc_hk("en_HK"); - str = loc_hk.name(); - VERIFY( loc_c != loc_hk ); - locale loc_fr("fr_FR@euro"); - str = loc_fr.name(); - VERIFY( loc_c != loc_fr ); - locale loc_de("de_DE"); - str = loc_de.name(); VERIFY( loc_c != loc_de ); - VERIFY( loc_hk != loc_fr ); VERIFY( loc_hk != loc_de ); VERIFY( loc_de != loc_fr ); @@ -194,24 +183,13 @@ void test02() typedef istreambuf_iterator<wchar_t> iterator_type; bool test = true; - string str; // basic construction locale loc_c = locale::classic(); - str = loc_c.name(); - locale loc_hk("en_HK"); - str = loc_hk.name(); - VERIFY( loc_c != loc_hk ); - locale loc_fr("fr_FR@euro"); - str = loc_fr.name(); - VERIFY( loc_c != loc_fr ); - locale loc_de("de_DE"); - str = loc_de.name(); VERIFY( loc_c != loc_de ); - VERIFY( loc_hk != loc_fr ); VERIFY( loc_hk != loc_de ); VERIFY( loc_de != loc_fr ); diff --git a/libstdc++-v3/testsuite/22_locale/money_put_members_char.cc b/libstdc++-v3/testsuite/22_locale/money_put_members_char.cc index b6bc9a9..c0f8d1e 100644 --- a/libstdc++-v3/testsuite/22_locale/money_put_members_char.cc +++ b/libstdc++-v3/testsuite/22_locale/money_put_members_char.cc @@ -36,24 +36,13 @@ void test01() typedef ostreambuf_iterator<char> iterator_type; bool test = true; - string str; // basic construction locale loc_c = locale::classic(); - str = loc_c.name(); - locale loc_hk("en_HK"); - str = loc_hk.name(); - VERIFY( loc_c != loc_hk ); - locale loc_fr("fr_FR@euro"); - str = loc_fr.name(); - VERIFY( loc_c != loc_fr ); - locale loc_de("de_DE"); - str = loc_de.name(); VERIFY( loc_c != loc_de ); - VERIFY( loc_hk != loc_fr ); VERIFY( loc_hk != loc_de ); VERIFY( loc_de != loc_fr ); @@ -181,24 +170,13 @@ void test02() typedef ostreambuf_iterator<char> iterator_type; bool test = true; - string str; // basic construction locale loc_c = locale::classic(); - str = loc_c.name(); - locale loc_hk("en_HK"); - str = loc_hk.name(); - VERIFY( loc_c != loc_hk ); - locale loc_fr("fr_FR@euro"); - str = loc_fr.name(); - VERIFY( loc_c != loc_fr ); - locale loc_de("de_DE"); - str = loc_de.name(); VERIFY( loc_c != loc_de ); - VERIFY( loc_hk != loc_fr ); VERIFY( loc_hk != loc_de ); VERIFY( loc_de != loc_fr ); diff --git a/libstdc++-v3/testsuite/22_locale/money_put_members_wchar_t.cc b/libstdc++-v3/testsuite/22_locale/money_put_members_wchar_t.cc index 6ff9f6f..b592e4f 100644 --- a/libstdc++-v3/testsuite/22_locale/money_put_members_wchar_t.cc +++ b/libstdc++-v3/testsuite/22_locale/money_put_members_wchar_t.cc @@ -37,24 +37,13 @@ void test01() typedef ostreambuf_iterator<wchar_t> iterator_type; bool test = true; - string str; // basic construction locale loc_c = locale::classic(); - str = loc_c.name(); - locale loc_hk("en_HK"); - str = loc_hk.name(); - VERIFY( loc_c != loc_hk ); - locale loc_fr("fr_FR@euro"); - str = loc_fr.name(); - VERIFY( loc_c != loc_fr ); - locale loc_de("de_DE"); - str = loc_de.name(); VERIFY( loc_c != loc_de ); - VERIFY( loc_hk != loc_fr ); VERIFY( loc_hk != loc_de ); VERIFY( loc_de != loc_fr ); @@ -181,24 +170,13 @@ void test02() typedef ostreambuf_iterator<wchar_t> iterator_type; bool test = true; - string str; // basic construction locale loc_c = locale::classic(); - str = loc_c.name(); - locale loc_hk("en_HK"); - str = loc_hk.name(); - VERIFY( loc_c != loc_hk ); - locale loc_fr("fr_FR@euro"); - str = loc_fr.name(); - VERIFY( loc_c != loc_fr ); - locale loc_de("de_DE"); - str = loc_de.name(); VERIFY( loc_c != loc_de ); - VERIFY( loc_hk != loc_fr ); VERIFY( loc_hk != loc_de ); VERIFY( loc_de != loc_fr ); diff --git a/libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc b/libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc index cfc9164..97cf334 100644 --- a/libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc +++ b/libstdc++-v3/testsuite/22_locale/moneypunct_members_char.cc @@ -33,24 +33,13 @@ void test01() typedef money_base::pattern pattern; bool test = true; - string str; // basic construction locale loc_c = locale::classic(); - str = loc_c.name(); - locale loc_us("en_US"); - str = loc_us.name(); - VERIFY( loc_c != loc_us ); - locale loc_fr("fr_FR"); - str = loc_fr.name(); - VERIFY( loc_c != loc_fr ); - locale loc_de("de_DE"); - str = loc_de.name(); VERIFY( loc_c != loc_de ); - VERIFY( loc_us != loc_fr ); VERIFY( loc_us != loc_de ); VERIFY( loc_de != loc_fr ); diff --git a/libstdc++-v3/testsuite/22_locale/moneypunct_members_wchar_t.cc b/libstdc++-v3/testsuite/22_locale/moneypunct_members_wchar_t.cc index 01b8d28..7470a58 100644 --- a/libstdc++-v3/testsuite/22_locale/moneypunct_members_wchar_t.cc +++ b/libstdc++-v3/testsuite/22_locale/moneypunct_members_wchar_t.cc @@ -34,24 +34,13 @@ void test01() typedef money_base::pattern pattern; bool test = true; - string str; // basic construction locale loc_c = locale::classic(); - str = loc_c.name(); - locale loc_us("en_US"); - str = loc_us.name(); - VERIFY( loc_c != loc_us ); - locale loc_fr("fr_FR"); - str = loc_fr.name(); - VERIFY( loc_c != loc_fr ); - locale loc_de("de_DE"); - str = loc_de.name(); VERIFY( loc_c != loc_de ); - VERIFY( loc_us != loc_fr ); VERIFY( loc_us != loc_de ); VERIFY( loc_de != loc_fr ); diff --git a/libstdc++-v3/testsuite/22_locale/numpunct_members_char.cc b/libstdc++-v3/testsuite/22_locale/numpunct_members_char.cc index e562f76..0527c99 100644 --- a/libstdc++-v3/testsuite/22_locale/numpunct_members_char.cc +++ b/libstdc++-v3/testsuite/22_locale/numpunct_members_char.cc @@ -31,24 +31,13 @@ void test01() using namespace std; bool test = true; - string str; // basic construction locale loc_c = locale::classic(); - str = loc_c.name(); - locale loc_us("en_US"); - str = loc_us.name(); - VERIFY( loc_c != loc_us ); - locale loc_fr("fr_FR"); - str = loc_fr.name(); - VERIFY( loc_c != loc_fr ); - locale loc_de("de_DE"); - str = loc_de.name(); VERIFY( loc_c != loc_de ); - VERIFY( loc_us != loc_fr ); VERIFY( loc_us != loc_de ); VERIFY( loc_de != loc_fr ); |