2008-09-04 Michael Snyder <msnyder@vmware.com>

* lib/gdb.exp (gdb_continue_to_breakpoint): Accept "in" as well
	as "at" (for non-debug functions such as _start).
This commit is contained in:
Michael Snyder 2008-09-04 22:00:25 +00:00
parent 74aac56ff7
commit b02a33db50
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-09-04 Michael Snyder <msnyder@vmware.com>
* lib/gdb.exp (gdb_continue_to_breakpoint): Accept "in" as well
as "at" (for non-debug functions such as _start).
2008-09-03 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
* gdb.base/value-double-free.exp: Respect gdb,no_hardware_watchpoints.

View File

@ -456,7 +456,7 @@ proc gdb_continue_to_breakpoint {name {location_pattern .*}} {
send_gdb "continue\n"
gdb_expect {
-re "Breakpoint .* at $location_pattern\r\n$gdb_prompt $" {
-re "Breakpoint .* (at|in) $location_pattern\r\n$gdb_prompt $" {
pass $full_name
}
-re ".*$gdb_prompt $" {