2004-10-11 Orjan Friberg <orjanf@axis.com>

* gdb.threads/bp_in_thread.exp: Use runto_main and "continue" instead
	of "run", since the latter doesn't work with remote targets.  Adjust
	the breakpoint numbering accordingly.
	* gdb.threads/pthread_cond_wait.exp: Ditto.
This commit is contained in:
Orjan Friberg 2004-10-11 12:22:33 +00:00
parent 029446c42d
commit a271cc337c
3 changed files with 15 additions and 6 deletions

View File

@ -1,3 +1,10 @@
2004-10-11 Orjan Friberg <orjanf@axis.com>
* gdb.threads/bp_in_thread.exp: Use runto_main and "continue" instead
of "run", since the latter doesn't work with remote targets. Adjust
the breakpoint numbering accordingly.
* gdb.threads/pthread_cond_wait.exp: Ditto.
2004-10-08 Michael Chastain <mec.gnu@mindspring.com>
* gdb.base/overlays.exp: Update copyright years.

View File

@ -35,15 +35,16 @@ gdb_exit
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
runto_main
gdb_test "break noreturn" \
"Breakpoint 1 at .*: file .*${srcfile}, line .*" \
"Breakpoint 2 at .*: file .*${srcfile}, line .*" \
"breakpoint on noreturn"
# Run the program and make sure GDB reports that we stopped after
# hitting breakpoint 1 in noreturn().
gdb_test "run" \
".*Breakpoint 1, noreturn ().*" \
gdb_test "continue" \
".*Breakpoint 2, noreturn ().*" \
"run to noreturn"

View File

@ -36,13 +36,14 @@ gdb_exit
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
runto_main
gdb_test "break break_me" \
"Breakpoint 1 at .*: file .*${srcfile}, line .*" \
"Breakpoint 2 at .*: file .*${srcfile}, line .*" \
"breakpoint on break_me"
gdb_test "run" \
".*Breakpoint 1, break_me ().*" \
gdb_test "continue" \
".*Breakpoint 2, break_me ().*" \
"run to break_me"
#