diff options
author | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-02 17:48:58 +0000 |
---|---|---|
committer | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-02 17:48:58 +0000 |
commit | e0538d44fb4aa740c0d91d24ee52261582521c67 (patch) | |
tree | fef8434bdef787244553a9954e920670b8dc622a /libstdc++-v3 | |
parent | ad85fb3e34e1eabe8ef6426e8bde78e705a4b70a (diff) | |
download | gcc-e0538d44fb4aa740c0d91d24ee52261582521c67.tar.gz |
PR c++/21280
* testsuite/27_io/ios_base/cons/assign_neg.cc: Adjust expected errors.
* testsuite/27_io/ios_base/cons/copy_neg.cc: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100499 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/27_io/ios_base/cons/assign_neg.cc | 3 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/27_io/ios_base/cons/copy_neg.cc | 3 |
3 files changed, 10 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4660ce9693e..d2ecd58927f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2005-06-02 Nathan Sidwell <nathan@codesourcery.com> + + PR c++/21280 + * testsuite/27_io/ios_base/cons/assign_neg.cc: Adjust expected errors. + * testsuite/27_io/ios_base/cons/copy_neg.cc: Likewise. + 2005-05-31 Paolo Carlini <pcarlini@suse.de> PR libstdc++/20534 (contd) diff --git a/libstdc++-v3/testsuite/27_io/ios_base/cons/assign_neg.cc b/libstdc++-v3/testsuite/27_io/ios_base/cons/assign_neg.cc index 50c8eb8b05f..ea6eb423cec 100644 --- a/libstdc++-v3/testsuite/27_io/ios_base/cons/assign_neg.cc +++ b/libstdc++-v3/testsuite/27_io/ios_base/cons/assign_neg.cc @@ -40,6 +40,7 @@ void test01() test_base io2; io1 = io2; } -// { dg-error "within this context" "" { target *-*-* } 41 } +// { dg-error "synthesized" "" { target *-*-* } 41 } +// { dg-error "within this context" "" { target *-*-* } 34 } // { dg-error "is private" "" { target *-*-* } 782 } // { dg-error "operator=" "" { target *-*-* } 0 } diff --git a/libstdc++-v3/testsuite/27_io/ios_base/cons/copy_neg.cc b/libstdc++-v3/testsuite/27_io/ios_base/cons/copy_neg.cc index 925087d5b27..2c047a5c3b5 100644 --- a/libstdc++-v3/testsuite/27_io/ios_base/cons/copy_neg.cc +++ b/libstdc++-v3/testsuite/27_io/ios_base/cons/copy_neg.cc @@ -40,6 +40,7 @@ void test02() test_base io1; test_base io2 = io1; } -// { dg-error "within this context" "" { target *-*-* } 41 } +// { dg-error "within this context" "" { target *-*-* } 35 } +// { dg-error "synthesized" "" { target *-*-* } 41 } // { dg-error "is private" "" { target *-*-* } 779 } // { dg-error "copy constructor" "" { target *-*-* } 0 } |