diff options
author | David Carlton <carlton@bactrian.org> | 2004-03-17 20:11:22 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2004-03-17 20:11:22 +0000 |
commit | 23c73aa3b7a368b2007151eccbb53b33fe0386b3 (patch) | |
tree | f1a0a6665f0cbc6d0735e9d2e2395c445e65e3c4 /gdb/testsuite | |
parent | fb8a10fd06f8dfd86a0643619f9026ba6c17126b (diff) | |
download | gdb-23c73aa3b7a368b2007151eccbb53b33fe0386b3.zip gdb-23c73aa3b7a368b2007151eccbb53b33fe0386b3.tar.gz gdb-23c73aa3b7a368b2007151eccbb53b33fe0386b3.tar.bz2 |
2004-03-17 David Carlton <carlton@kealia.com>
* gdb.cp/classes.exp (test_enums): Refer to PR c++/1588 instead of
PR c++/826.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cp/classes.exp | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 4f1377e..1dcd201 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2004-03-17 David Carlton <carlton@kealia.com> + + * gdb.cp/classes.exp (test_enums): Refer to PR c++/1588 instead of + PR c++/826. + 2004-03-16 Roland McGrath <roland@redhat.com> * gdb.base/auxv.exp: New file. diff --git a/gdb/testsuite/gdb.cp/classes.exp b/gdb/testsuite/gdb.cp/classes.exp index 0b723e5..d4e78c1 100644 --- a/gdb/testsuite/gdb.cp/classes.exp +++ b/gdb/testsuite/gdb.cp/classes.exp @@ -703,7 +703,7 @@ proc test_enums {} { } # I'll do this test two different ways, because of a parser bug. - # See PR gdb/826. + # See PR gdb/1588. gdb_test_multiple "print (ClassWithEnum::PrivEnum) 42" "print (ClassWithEnum::PrivEnum) 42" { -re "\\$\[0-9\]+ = yellow$nl$gdb_prompt $" { @@ -712,7 +712,7 @@ proc test_enums {} { -re "A (parse|syntax) error in expression, near `42'.$nl$gdb_prompt $" { # "parse error" is bison 1.35. # "syntax error" is bison 1.875. - kfail "gdb/826" "print (ClassWithEnum::PrivEnum) 42" + kfail "gdb/1588" "print (ClassWithEnum::PrivEnum) 42" } } |