diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-10-15 19:11:56 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-10-15 19:11:56 +0000 |
commit | 21a7b08989a1c860514d5bd840bc29f5ad97d2e6 (patch) | |
tree | 67aaf90ba85508d7b1be0f080011f7efb9dc90e7 /gdb | |
parent | 2c47921e64abfc0aa3d3187e0c23943138ec3783 (diff) | |
download | binutils-21a7b08989a1c860514d5bd840bc29f5ad97d2e6.zip binutils-21a7b08989a1c860514d5bd840bc29f5ad97d2e6.tar.gz binutils-21a7b08989a1c860514d5bd840bc29f5ad97d2e6.tar.bz2 |
gdb/testsuite/
Fix recent gdb_breakpoint regression.
* gdb.java/jmisc.exp: gdb_breakpoint for $function - remove curly
braces from the parameter.
* gdb.java/jprint.exp: Likewise.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.java/jmisc.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.java/jprint.exp | 4 |
3 files changed, 12 insertions, 4 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index ceefea5..f096987 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,11 @@ +2012-10-15 Jan Kratochvil <jan.kratochvil@redhat.com> + Doug Evans <dje@google.com> + + Fix recent gdb_breakpoint regression. + * gdb.java/jmisc.exp: gdb_breakpoint for $function - remove curly + braces from the parameter. + * gdb.java/jprint.exp: Likewise. + 2012-10-15 Doug Evans <dje@google.com> * lib/gdb.exp (runto): Fix call to gdb_breakpoint. diff --git a/gdb/testsuite/gdb.java/jmisc.exp b/gdb/testsuite/gdb.java/jmisc.exp index 7215861..4bd1800 100644 --- a/gdb/testsuite/gdb.java/jmisc.exp +++ b/gdb/testsuite/gdb.java/jmisc.exp @@ -43,8 +43,8 @@ if [set_lang_java] then { # signature. runto_main set function "${testfile}.main(java.lang.String\[\])" - gdb_breakpoint "$function" { allow-pending } - gdb_breakpoint "${function}void" { allow-pending } + gdb_breakpoint "$function" allow-pending + gdb_breakpoint "${function}void" allow-pending gdb_continue_to_breakpoint $function gdb_test_multiple "ptype jmisc" "ptype jmisc" { diff --git a/gdb/testsuite/gdb.java/jprint.exp b/gdb/testsuite/gdb.java/jprint.exp index b2d5d31..116a4ba 100644 --- a/gdb/testsuite/gdb.java/jprint.exp +++ b/gdb/testsuite/gdb.java/jprint.exp @@ -43,8 +43,8 @@ if [set_lang_java] then { # signature. runto_main set function "${testfile}.main(java.lang.String\[\])" - gdb_breakpoint "$function" { allow-pending } - gdb_breakpoint "${function}void" { allow-pending } + gdb_breakpoint "$function" allow-pending + gdb_breakpoint "${function}void" allow-pending gdb_continue_to_breakpoint $function gdb_test "p jvclass.addprint(4,5,6)" " = 15" "unambiguous static call" |