Index: testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc =================================================================== RCS file: /cvsroot/gcc/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc,v retrieving revision 1.2 diff -u -p -r1.2 10132-1.cc --- testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc 23 Sep 2003 20:02:53 -0000 1.2 +++ testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc 26 Sep 2003 01:10:16 -0000 @@ -46,7 +46,7 @@ int main() { delete fb; } - catch(exception& obj) + catch(std::exception& obj) { VERIFY( false ); } Index: testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc =================================================================== RCS file: /cvsroot/gcc/gcc/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc,v retrieving revision 1.7 diff -u -p -r1.7 3983-fstream.cc --- testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc 23 Sep 2003 20:03:09 -0000 1.7 +++ testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc 26 Sep 2003 01:10:17 -0000 @@ -136,27 +136,27 @@ void test03() int i; ifs_uc >> i; } - catch (bad_cast& obj) + catch (std::bad_cast& obj) { } - catch (exception& obj) + catch (std::exception& obj) { test = false; } try { ifs_uc >> arr; } - catch (bad_cast& obj) + catch (std::bad_cast& obj) { } - catch (exception& obj) + catch (std::exception& obj) { test = false; } try { ifs_uc >> ws; } - catch (bad_cast& obj) + catch (std::bad_cast& obj) { } - catch (exception& obj) + catch (std::exception& obj) { test = false; } try @@ -164,9 +164,9 @@ void test03() basic_string s_uc(arr); ifs_uc >> s_uc; } - catch (bad_cast& obj) + catch (std::bad_cast& obj) { } - catch (exception& obj) + catch (std::exception& obj) { test = false; } VERIFY( test ); Index: testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc =================================================================== RCS file: /cvsroot/gcc/gcc/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc,v retrieving revision 1.3 diff -u -p -r1.3 3983-sstream.cc --- testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc 23 Sep 2003 20:03:09 -0000 1.3 +++ testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc 26 Sep 2003 01:10:17 -0000 @@ -136,27 +136,27 @@ void test03() int i; iss_uc >> i; } - catch (bad_cast& obj) + catch (std::bad_cast& obj) { } - catch (exception& obj) + catch (std::exception& obj) { test = false; } try { iss_uc >> arr; } - catch (bad_cast& obj) + catch (std::bad_cast& obj) { } - catch (exception& obj) + catch (std::exception& obj) { test = false; } try { iss_uc >> ws; } - catch (bad_cast& obj) + catch (std::bad_cast& obj) { } - catch (exception& obj) + catch (std::exception& obj) { test = false; } try @@ -164,9 +164,9 @@ void test03() basic_string s_uc(arr); iss_uc >> s_uc; } - catch (bad_cast& obj) + catch (std::bad_cast& obj) { } - catch (exception& obj) + catch (std::exception& obj) { test = false; } VERIFY( test ); Index: testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc =================================================================== RCS file: /cvsroot/gcc/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc,v retrieving revision 1.7 diff -u -p -r1.7 3983-fstream.cc --- testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc 23 Sep 2003 20:03:15 -0000 1.7 +++ testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc 26 Sep 2003 01:10:18 -0000 @@ -135,9 +135,9 @@ void test03() bool b = true; ofs_uc << b; } - catch (bad_cast& obj) + catch (std::bad_cast& obj) { } - catch (exception& obj) + catch (std::exception& obj) { test = false; } VERIFY( test ); Index: testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc =================================================================== RCS file: /cvsroot/gcc/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc,v retrieving revision 1.3 diff -u -p -r1.3 3983-sstream.cc --- testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc 23 Sep 2003 20:03:15 -0000 1.3 +++ testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc 26 Sep 2003 01:10:18 -0000 @@ -135,9 +135,9 @@ void test03() bool b = true; oss_uc << b; } - catch (bad_cast& obj) + catch (std::bad_cast& obj) { } - catch (exception& obj) + catch (std::exception& obj) { test = false; } VERIFY( test );