diff options
author | Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> | 2002-01-17 22:29:44 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2002-01-17 22:29:44 +0000 |
commit | 715e561616b24025adfaf76ce562286b216fc702 (patch) | |
tree | 6b58015a93ebf6b9ab762363b92bd1fbeb7a7e46 | |
parent | 1c22801965d1c9cff966bc92c4a03dec703555b8 (diff) | |
download | gcc-715e561616b24025adfaf76ce562286b216fc702.zip gcc-715e561616b24025adfaf76ce562286b216fc702.tar.gz gcc-715e561616b24025adfaf76ce562286b216fc702.tar.bz2 |
ctor_copy_dtor.cc: Remove check.
2002-01-17 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de>
* testsuite/22_locale/ctor_copy_dtor.cc: Remove check.
From-SVN: r48967
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/22_locale/ctor_copy_dtor.cc | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index a12a896..fb6c17a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2002-01-17 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> + + * testsuite/22_locale/ctor_copy_dtor.cc: Remove check. + 2002-01-17 David Edelsohn <edelsohn@gnu.org> * configure.target: Define OPT_LDFLAGS for AIX case. diff --git a/libstdc++-v3/testsuite/22_locale/ctor_copy_dtor.cc b/libstdc++-v3/testsuite/22_locale/ctor_copy_dtor.cc index bbe3b14..8735799 100644 --- a/libstdc++-v3/testsuite/22_locale/ctor_copy_dtor.cc +++ b/libstdc++-v3/testsuite/22_locale/ctor_copy_dtor.cc @@ -1,6 +1,6 @@ // 2000-09-13 Benjamin Kosnik <bkoz@redhat.com> -// Copyright (C) 2000, 2001 Free Software Foundation +// Copyright (C) 2000, 2001, 2002 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 @@ -124,7 +124,6 @@ void test01() VERIFY (loc06 != loc02); VERIFY (loc06.name() == "fr_FR"); locale loc07(""); - VERIFY (loc07 != loc01); VERIFY (loc07 != loc02); VERIFY (loc07.name() != ""); try |