diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2009-12-15 16:11:32 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2009-12-15 16:11:32 +0000 |
commit | 9f81eaccf9ab5a38f9a988ccc63a3299e18ef5b5 (patch) | |
tree | afda553c2ff56e5cb9a929022697b53a9c7b75ea | |
parent | 9749695393332d52bd8651e935c8b1876f1c204e (diff) | |
download | gcc-9f81eaccf9ab5a38f9a988ccc63a3299e18ef5b5.zip gcc-9f81eaccf9ab5a38f9a988ccc63a3299e18ef5b5.tar.gz gcc-9f81eaccf9ab5a38f9a988ccc63a3299e18ef5b5.tar.bz2 |
re PR c++/42379 (Revision 155245 failed 1_neg.cc)
2009-12-15 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/42379
* testsuite/23_containers/set/operators/1_neg.cc: Fix dg-error strings.
* testsuite/23_containers/map/operators/1_neg.cc: Likewise.
From-SVN: r155258
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/23_containers/map/operators/1_neg.cc | 4 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/23_containers/set/operators/1_neg.cc | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b0dd29b..cb9ce55 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2009-12-15 Paolo Carlini <paolo.carlini@oracle.com> + + PR c++/42379 + * testsuite/23_containers/set/operators/1_neg.cc: Fix dg-error strings. + * testsuite/23_containers/map/operators/1_neg.cc: Likewise. + 2009-12-14 Paolo Carlini <paolo.carlini@oracle.com> PR libstdc++/25304, DR 865 [Ready] diff --git a/libstdc++-v3/testsuite/23_containers/map/operators/1_neg.cc b/libstdc++-v3/testsuite/23_containers/map/operators/1_neg.cc index 031e4a7..647fef7 100644 --- a/libstdc++-v3/testsuite/23_containers/map/operators/1_neg.cc +++ b/libstdc++-v3/testsuite/23_containers/map/operators/1_neg.cc @@ -41,5 +41,5 @@ void test01() test &= itr == mapByName.end(); // { dg-error "no" } } -// { dg-error "candidates are" "" { target *-*-* } 212 } -// { dg-error "candidates are" "" { target *-*-* } 216 } +// { dg-error "candidate is" "" { target *-*-* } 212 } +// { dg-error "candidate is" "" { target *-*-* } 216 } diff --git a/libstdc++-v3/testsuite/23_containers/set/operators/1_neg.cc b/libstdc++-v3/testsuite/23_containers/set/operators/1_neg.cc index 9f12a6b..6765fc1 100644 --- a/libstdc++-v3/testsuite/23_containers/set/operators/1_neg.cc +++ b/libstdc++-v3/testsuite/23_containers/set/operators/1_neg.cc @@ -39,5 +39,5 @@ void test01() test &= itr == setByName.end(); // { dg-error "no" } } -// { dg-error "candidates are" "" { target *-*-* } 287 } -// { dg-error "candidates are" "" { target *-*-* } 291 } +// { dg-error "candidate is" "" { target *-*-* } 287 } +// { dg-error "candidate is" "" { target *-*-* } 291 } |