2001-10-04 Frank Ch. Eigler <fche@redhat.com>

* lib/insight-support.exp (gdbtk_start): Don't exit dejagnu
	if gdb child process crashes, just signal an error.
This commit is contained in:
Frank Ch. Eigler 2001-10-04 22:11:12 +00:00
parent f668894301
commit 1d9d99f32d
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2001-10-04 Frank Ch. Eigler <fche@redhat.com>
* lib/insight-support.exp (gdbtk_start): Don't exit dejagnu
if gdb child process crashes, just signal an error.
2001-10-02 Jim Blandy <jimb@redhat.com>
* lib/gdb.exp (test_xfail_format): Simplify.

View file

@ -94,7 +94,7 @@ proc gdbtk_start {test} {
set err [catch {exec $GDB -nx -q --tclcommand=$test} res]
if { $err } {
perror "Execing $GDB failed: $res"
exit 1;
append res "\nERROR gdb-crash"
}
return $res
}