diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-12-24 21:57:06 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-12-24 21:57:06 +0000 |
commit | 0c5c1eea5ad282c90f36c923409a42002ae73c38 (patch) | |
tree | 1e0fc19ddbbd0e6c5baee652ce5579fa50e9859f | |
parent | 921a670b4ae05e1482617330aff99cc8892928d2 (diff) | |
download | gdb-0c5c1eea5ad282c90f36c923409a42002ae73c38.tar.gz |
gdb/testsuite/
Fix compatibility with G++-4.5.
* gdb.cp/expand-sals.cc (main): Remove the "exit-line" comment.
* gdb.cp/expand-sals.exp: Remove breakpoint on "exit-line".
(uncaught return): Remove.
-rw-r--r-- | gdb/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cp/expand-sals.cc | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.cp/expand-sals.exp | 6 |
3 files changed, 8 insertions, 7 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 86abd127a7c..8aef477daac 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2009-12-24 Jan Kratochvil <jan.kratochvil@redhat.com> + + Fix compatibility with G++-4.5. + * gdb.cp/expand-sals.cc (main): Remove the "exit-line" comment. + * gdb.cp/expand-sals.exp: Remove breakpoint on "exit-line". + (uncaught return): Remove. + 2009-12-23 Jan Kratochvil <jan.kratochvil@redhat.com> Phil Muldoon <pmuldoon@redhat.com> diff --git a/gdb/testsuite/gdb.cp/expand-sals.cc b/gdb/testsuite/gdb.cp/expand-sals.cc index 6169a05dabe..e83cd163f7e 100644 --- a/gdb/testsuite/gdb.cp/expand-sals.cc +++ b/gdb/testsuite/gdb.cp/expand-sals.cc @@ -49,5 +49,5 @@ main (void) A a; B b; - return 0; /* exit-line */ + return 0; } diff --git a/gdb/testsuite/gdb.cp/expand-sals.exp b/gdb/testsuite/gdb.cp/expand-sals.exp index 3c302c31321..741e7bc1888 100644 --- a/gdb/testsuite/gdb.cp/expand-sals.exp +++ b/gdb/testsuite/gdb.cp/expand-sals.exp @@ -23,8 +23,6 @@ if ![runto_main] { return -1 } -gdb_breakpoint [gdb_get_line_number "exit-line"] - gdb_breakpoint [gdb_get_line_number "func-line"] gdb_continue_to_breakpoint "func" ".*func-line.*" @@ -52,7 +50,3 @@ gdb_test "bt" \ "bt from A" gdb_continue_to_breakpoint "next caller func" ".*func-line.*" - -# Verify GDB really could not catch any other breakpoint location. - -gdb_continue_to_breakpoint "uncaught return" ".*exit-line.*" |