gdb/testsuite/

Report error on GDB crash during runto.
	* lib/gdb.exp (runto <eof>): New.
This commit is contained in:
Jan Kratochvil 2009-06-12 21:28:34 +00:00
parent 4b477ade4f
commit 72c6339519
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2009-06-12 Jan Kratochvil <jan.kratochvil@redhat.com>
Report error on GDB crash during runto.
* lib/gdb.exp (runto <eof>): New.
2009-06-09 Daniel Jacobowitz <dan@codesourcery.com>
* gdb.mi/mi-async.exp, gdb.mi/mi-basics.exp,

View File

@ -423,6 +423,10 @@ proc runto { function args } {
fail "running to $function in runto"
return 0
}
eof {
fail "running to $function in runto (end of file)"
return 0
}
timeout {
fail "running to $function in runto (timeout)"
return 0