diff options
author | Keith Seitz <keiths@redhat.com> | 2010-03-31 00:47:23 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2010-03-31 00:47:23 +0000 |
commit | fd7f724a31ff0c4a385597c0470fb5ed9d9a0e8c (patch) | |
tree | f2027e5a2ec9bbbabe1de9e3ebe3e5616d1fa0ec /gdb/testsuite | |
parent | 94c11f939a675ed741f616b58091ef08832aa6b9 (diff) | |
download | gdb-fd7f724a31ff0c4a385597c0470fb5ed9d9a0e8c.zip gdb-fd7f724a31ff0c4a385597c0470fb5ed9d9a0e8c.tar.gz gdb-fd7f724a31ff0c4a385597c0470fb5ed9d9a0e8c.tar.bz2 |
* gdb.java/jmisc.exp (ptype jmisc): Allow the constructor to
appear in the output before main.
Remove KFAIL for gdb/2215 aka bz 9320.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.java/jmisc.exp | 7 |
2 files changed, 8 insertions, 5 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 092593f..e0e2ffe 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2010-03-26 Keith Seitz <keiths@redhat.com> + + * gdb.java/jmisc.exp (ptype jmisc): Allow the constructor to + appear in the output before main. + Remove KFAIL for gdb/2215 aka bz 9320. + 2010-03-30 Doug Evans <dje@google.com> * gdb.arch/amd64-word.exp: Rename hex to hexr, the former is defined diff --git a/gdb/testsuite/gdb.java/jmisc.exp b/gdb/testsuite/gdb.java/jmisc.exp index e3ab657..6380393 100644 --- a/gdb/testsuite/gdb.java/jmisc.exp +++ b/gdb/testsuite/gdb.java/jmisc.exp @@ -79,11 +79,8 @@ if ![set_lang_java] then { gdb_expect { -re "type = class jmisc extends java.lang.Object \{\[\r\n\ \t]+void main\\(java\.lang\.String\\\[]\\);\[\r\n\ \t]+jmisc\\(\\);\[\r\n\ \t]+\}\[\r\n\ \t]+$gdb_prompt $" { pass "ptype jmisc" } - -re "type = class jmisc extends java.lang.Object \{\[\r\n\ \t]+void main\\(java\.lang\.String\\\[]\\)void;\[\r\n\ \t]+jmisc\\(\\);\[\r\n\ \t]+\}\[\r\n\ \t]+$gdb_prompt $" { - # Just because GCC includes the signature doesn't mean we - # should print it here. We already show the return type. - kfail "ptype jmisc" gdb/2215 - } + -re "type = class jmisc extends java.lang.Object \{\[\r\n\ \t]+jmisc\\(\\);\[\r\n\ \t]+void main\\(java\.lang\.String\\\[]\\);\[\r\n\ \t]+\}\[\r\n\ \t]+$gdb_prompt $" + { pass "ptype jmisc" } -re ".*$gdb_prompt $" { fail "ptype jmisc" } timeout { fail "ptype jmisc (timeout)" ; return } } |