* gdb.base/break.exp: Don't test for program exit or exit status
if $noresults if nonzero. * gdb.base/langs.exp: Likewise. * gdb.base/watchpoint.exp: Likewise. For proelf targets were we can't even tell if a process exits.
This commit is contained in:
parent
9b2ceeb159
commit
1be1bc3835
@ -1,5 +1,10 @@
|
|||||||
Wed Jan 31 14:21:09 1996 Jeffrey A Law (law@cygnus.com)
|
Wed Jan 31 14:21:09 1996 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
|
* gdb.base/break.exp: Don't test for program exit or exit status
|
||||||
|
if $noresults if nonzero.
|
||||||
|
* gdb.base/langs.exp: Likewise.
|
||||||
|
* gdb.base/watchpoint.exp: Likewise.
|
||||||
|
|
||||||
* gdb.base/default.exp: Remove extraneous call to load gdb.exp.
|
* gdb.base/default.exp: Remove extraneous call to load gdb.exp.
|
||||||
* gdb.chill/pr-8405.exp: Move skip_chill_tests check to just before
|
* gdb.chill/pr-8405.exp: Move skip_chill_tests check to just before
|
||||||
trying to compile the testcase.
|
trying to compile the testcase.
|
||||||
|
@ -27,9 +27,9 @@ set prms_id 0
|
|||||||
set bug_id 0
|
set bug_id 0
|
||||||
|
|
||||||
set testfile "watchpoint"
|
set testfile "watchpoint"
|
||||||
set srcfile ${srcdir}/$subdir/${testfile}.c
|
set srcfile ${testfile}.c
|
||||||
set binfile ${objdir}/${subdir}/${testfile}
|
set binfile ${objdir}/${subdir}/${testfile}
|
||||||
if { [compile "${srcfile} -g -o ${binfile}"] != "" } {
|
if { [compile "${srcdir}/${subdir}/${srcfile} -g -o ${binfile}"] != "" } {
|
||||||
perror "Couldn't compile ${srcfile}"
|
perror "Couldn't compile ${srcfile}"
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
@ -127,6 +127,7 @@ proc test_simple_watchpoint {} {
|
|||||||
global prompt
|
global prompt
|
||||||
global hex
|
global hex
|
||||||
global decimal
|
global decimal
|
||||||
|
global noresults
|
||||||
|
|
||||||
# Ensure that the watchpoint is disabled when we startup.
|
# Ensure that the watchpoint is disabled when we startup.
|
||||||
|
|
||||||
@ -230,6 +231,8 @@ Continuing.*\[Ww\]atchpoint.*ival3.*Old value = -1.*New value = 0.*ival3 = count
|
|||||||
|
|
||||||
# Run until process exits.
|
# Run until process exits.
|
||||||
|
|
||||||
|
if $noresults==1 then { return }
|
||||||
|
|
||||||
gdb_test "cont" "Continuing.*Program exited normally.*" \
|
gdb_test "cont" "Continuing.*Program exited normally.*" \
|
||||||
"continue to exit in test_simple_watchpoint"
|
"continue to exit in test_simple_watchpoint"
|
||||||
}
|
}
|
||||||
@ -242,6 +245,7 @@ proc test_disabling_watchpoints {} {
|
|||||||
global srcfile
|
global srcfile
|
||||||
global decimal
|
global decimal
|
||||||
global hex
|
global hex
|
||||||
|
global noresults
|
||||||
|
|
||||||
# Ensure that the watchpoint is disabled when we startup.
|
# Ensure that the watchpoint is disabled when we startup.
|
||||||
|
|
||||||
@ -320,6 +324,8 @@ proc test_disabling_watchpoints {} {
|
|||||||
gdb_test "cont" "Continuing.*Breakpoint.*marker2 \\(\\).*" \
|
gdb_test "cont" "Continuing.*Breakpoint.*marker2 \\(\\).*" \
|
||||||
"disabled watchpoint skipped"
|
"disabled watchpoint skipped"
|
||||||
|
|
||||||
|
if $noresults==1 then { return }
|
||||||
|
|
||||||
gdb_test "cont" "Continuing.*Program exited normally.*" \
|
gdb_test "cont" "Continuing.*Program exited normally.*" \
|
||||||
"continue to exit in test_disabling_watchpoints"
|
"continue to exit in test_disabling_watchpoints"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user