forked from Imagelibrary/binutils-gdb
Cygwin debugging does not support follow fork. There is currently no
interface between the debugger and the Cygwin runtime to be able to
intercept forks and execs. Consequently, testcases that try to
exercise fork/exec all FAIL, and several hit long cascading timeouts.
Add a new allow_fork_tests procedure, meant to be used with require,
and sprinkle it throughout testcases that exercise fork.
Note that some tests currently are skipped on targets other than
Linux, with something like:
# Until "set follow-fork-mode" and "catch vfork" are implemented on
# other targets...
#
if {![istarget "*-linux*"]} {
continue
}
However, some BSD ports also support fork debugging nowadays, and the
testcases were never adjusted... That is why the new allow_fork_tests
procedure doesn't look for linux.
With this patch, on Cygwin, I get this:
$ make check TESTS="*/*fork*.exp"
...
=== gdb Summary ===
# of expected passes 6
# of untested testcases 1
# of unsupported tests 31
Reviewed-By: Keith Seitz <keiths@redhat.com>
Change-Id: I0c5e8c574d1f61b28d370c22a0b0b6bc3efaf978
89 lines
2.7 KiB
Plaintext
89 lines
2.7 KiB
Plaintext
# Copyright 2016-2025 Free Software Foundation, Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# Make sure that if an inferior exits or is detached/killed, its
|
|
# watchpoints don't end up with stale locations, preventing resumption
|
|
# of other inferiors.
|
|
|
|
require allow_fork_tests
|
|
|
|
standard_testfile
|
|
|
|
if {[build_executable "failed to build" $testfile $srcfile {debug}]} {
|
|
return -1
|
|
}
|
|
|
|
# The test proper. DISPOSE indicates how to dispose of the fork
|
|
# child. Can be either "kill", "detach", or "exit" (to continue it to
|
|
# normal exit).
|
|
proc do_test {dispose} {
|
|
global binfile bkptno_numopt_re
|
|
|
|
clean_restart $binfile
|
|
|
|
gdb_test_no_output "set follow-fork child"
|
|
gdb_test_no_output "set detach-on-fork off"
|
|
|
|
if ![runto "child_function"] {
|
|
return
|
|
}
|
|
|
|
gdb_test "watch globalvar" "atchpoint \[0-9\]+: globalvar" \
|
|
"set watchpoint on inferior 2"
|
|
|
|
# Dispose of the inferior. This should get rid of this inferior's
|
|
# watchpoint locations.
|
|
if {$dispose == "kill"} {
|
|
gdb_test "kill" "" "kill inferior 2" \
|
|
"Kill the program being debugged.*y or n. $" "y"
|
|
} elseif {$dispose == "detach"} {
|
|
gdb_test "detach" ".*" "detach inferior 2"
|
|
} elseif {$dispose == "exit"} {
|
|
gdb_test "continue" ".*exited normally.*" "run to exit inferior 2"
|
|
} else {
|
|
perror "unhandled dispose: $dispose"
|
|
}
|
|
|
|
gdb_test "inferior 1" "witching to inferior 1 .*" \
|
|
"switch back to inferior 1"
|
|
|
|
if {$dispose == "kill"} {
|
|
gdb_test "print expect_signaled = 1" " = 1"
|
|
}
|
|
|
|
gdb_breakpoint "marker"
|
|
|
|
# Now continue inferior 1. Before GDB was fixed, watchpoints for
|
|
# inferior 2 managed to be left behind. When GDB realized that
|
|
# they hadn't been inserted, the continue command was aborted:
|
|
#
|
|
# (gdb) continue
|
|
# Continuing.
|
|
# Warning:
|
|
# Could not insert hardware watchpoint 2.
|
|
# Could not insert hardware breakpoints:
|
|
# You may have requested too many hardware breakpoints/watchpoints.
|
|
#
|
|
# Command aborted.
|
|
# (gdb)
|
|
#
|
|
gdb_test "continue" "Breakpoint $bkptno_numopt_re, marker .*" \
|
|
"continue in inferior 1"
|
|
}
|
|
|
|
foreach_with_prefix dispose {"kill" "detach" "exit"} {
|
|
do_test $dispose
|
|
}
|