mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
323fd5b9f9
Running gdb.server/stop-reply-no-thread-multi.exp with "maint set target-non-stop on" occasionally hit an internal error like this: ... continue Continuing. warning: multi-threaded target stopped without sending a thread-id, using first non-exited thread /home/pedro/gdb/binutils-gdb/src/gdb/inferior.c:291: internal-error: inferior* find_inferior_pid(process_stratum_target*, int): Assertion `pid != 0' failed. A problem internal to GDB has been detected, further debugging may prove unreliable. This is a bug, please report it. FAIL: gdb.server/stop-reply-no-thread-multi.exp: to_disable=Tthread: continue until exit (GDB internal error) The backtrace looks like this: ... #5 0x0000560357b0879c in internal_error (file=0x560357be6c18 "/home/pedro/gdb/binutils-gdb/src/gdb/inferior.c", line=291, fmt=0x560357be6b21 "%s: Assertion `%s' failed.") at /home/pedro/gdb/binutils-gdb/src/gdbsupport/errors.cc:55 #6 0x000056035762061b in find_inferior_pid (targ=0x5603596e9560, pid=0) at /home/pedro/gdb/binutils-gdb/src/gdb/inferior.c:291 #7 0x00005603576206e6 in find_inferior_ptid (targ=0x5603596e9560, ptid=...) at /home/pedro/gdb/binutils-gdb/src/gdb/inferior.c:305 #8 0x00005603577d43ed in remote_target::check_pending_events_prevent_wildcard_vcont (this=0x5603596e9560, may_global_wildcard=0x7fff84fb05f0) at /home/pedro/gdb/binutils-gdb/src/gdb/remote.c:7215 #9 0x00005603577d2a9c in remote_target::commit_resumed (this=0x5603596e9560) at /home/pedro/gdb/binutils-gdb/src/gdb/remote.c:6680 ... pid is 0 in this case because the queued event is a process exit event with no pid associated: (top-gdb) p event->ws During symbol reading: .debug_line address at offset 0x563c9a is 0 [in module /home/pedro/gdb/binutils-gdb/build/gdb/gdb] $1 = {kind = TARGET_WAITKIND_EXITED, value = {integer = 0, sig = GDB_SIGNAL_0, related_pid = {m_pid = 0, m_lwp = 0, m_tid = 0}, execd_pathname = 0x0, syscall_number = 0}} (top-gdb) This fixes it, and adds a "maint set target-non-stop on/off" axis to the testcase. gdb/ChangeLog: * remote.c (remote_target::check_pending_events_prevent_wildcard_vcont): Check whether the event's ptid is not null_ptid before looking up the corresponding inferior. gdb/testsuite/ChangeLog: * gdb.server/stop-reply-no-thread-multi.exp (run_test): Add "target_non_stop" parameter and use it. (top level): Add "maint set target-non-stop on/off" testing axis. Change-Id: Ia30cf275305ee4dcbbd33f731534cd71d1550eaa
147 lines
5.1 KiB
Plaintext
147 lines
5.1 KiB
Plaintext
# This testcase is part of GDB, the GNU debugger.
|
|
#
|
|
# Copyright 2021 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/>.
|
|
|
|
# Test how GDB handles the case where a target either doesn't use 'T'
|
|
# packets at all or doesn't include a thread-id in a 'T' packet, AND,
|
|
# where the test program contains multiple threads.
|
|
#
|
|
# In general if multiple threads are executing and the target doesn't
|
|
# include a thread-id in its stop response then GDB will not be able
|
|
# to correctly figure out which thread the stop applies to.
|
|
#
|
|
# However, this test covers a very specific case, there are multiple
|
|
# threads but only a single thread is actually executing. So, when
|
|
# the stop comes from the target, without a thread-id, GDB should be
|
|
# able to correctly figure out which thread has stopped.
|
|
|
|
load_lib gdbserver-support.exp
|
|
|
|
if { [skip_gdbserver_tests] } {
|
|
verbose "skipping gdbserver tests"
|
|
return -1
|
|
}
|
|
|
|
standard_testfile
|
|
if { [build_executable "failed to prepare" $testfile $srcfile {debug pthreads}] == -1 } {
|
|
return -1
|
|
}
|
|
|
|
# Run the tests with different features of GDBserver disabled.
|
|
# TARGET_NON_STOP is passed to "maint set target-non-stop".
|
|
proc run_test { target_non_stop disable_feature } {
|
|
global binfile gdb_prompt decimal hex
|
|
global GDBFLAGS
|
|
|
|
save_vars { GDBFLAGS } {
|
|
append GDBFLAGS " -ex \"maint set target-non-stop $target_non_stop\""
|
|
clean_restart ${binfile}
|
|
}
|
|
|
|
# Make sure we're disconnected, in case we're testing with an
|
|
# extended-remote board, therefore already connected.
|
|
gdb_test "disconnect" ".*"
|
|
|
|
set packet_arg ""
|
|
if { $disable_feature != "" } {
|
|
set packet_arg "--disable-packet=${disable_feature}"
|
|
}
|
|
set res [gdbserver_start $packet_arg $binfile]
|
|
set gdbserver_protocol [lindex $res 0]
|
|
set gdbserver_gdbport [lindex $res 1]
|
|
|
|
# Disable XML-based thread listing, and multi-process extensions.
|
|
gdb_test_no_output "set remote threads-packet off"
|
|
gdb_test_no_output "set remote multiprocess-feature-packet off"
|
|
|
|
set res [gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport]
|
|
if ![gdb_assert {$res == 0} "connect"] {
|
|
return
|
|
}
|
|
|
|
# There should be only one thread listed at this point.
|
|
gdb_test_multiple "info threads" "" {
|
|
-re "2 Thread.*$gdb_prompt $" {
|
|
fail $gdb_test_name
|
|
}
|
|
-re "has terminated.*$gdb_prompt $" {
|
|
fail $gdb_test_name
|
|
}
|
|
-re "\\\* 1\[\t \]*Thread\[^\r\n\]*\r\n$gdb_prompt $" {
|
|
pass $gdb_test_name
|
|
}
|
|
}
|
|
|
|
gdb_breakpoint "unlock_worker"
|
|
gdb_continue_to_breakpoint "run to unlock_worker"
|
|
|
|
# There should be two threads at this point with thread 1 selected.
|
|
gdb_test "info threads" \
|
|
"\\\* 1\[\t \]*Thread\[^\r\n\]*\r\n 2\[\t \]*Thread\[^\r\n\]*" \
|
|
"second thread should now exist"
|
|
|
|
# Switch threads.
|
|
gdb_test "thread 2" ".*" "switch to second thread"
|
|
|
|
# Now turn on scheduler-locking so that when we step thread 2 only
|
|
# that one thread will be set running.
|
|
gdb_test_no_output "set scheduler-locking on"
|
|
|
|
# Single step thread 2. Only the one thread will step. When the
|
|
# thread stops, if the stop packet doesn't include a thread-id
|
|
# then GDB should still understand which thread stopped.
|
|
gdb_test_multiple "stepi" "" {
|
|
-re -wrap "Thread 1 received signal SIGTRAP.*" {
|
|
fail $gdb_test_name
|
|
}
|
|
-re -wrap "$hex.*$decimal.*while \\(worker_blocked\\).*" {
|
|
pass $gdb_test_name
|
|
}
|
|
}
|
|
|
|
# Check that thread 2 is still selected.
|
|
gdb_test "info threads" \
|
|
" 1\[\t \]*Thread\[^\r\n\]*\r\n\\\* 2\[\t \]*Thread\[^\r\n\]*" \
|
|
"second thread should still be selected after stepi"
|
|
|
|
# Turn scheduler locking off again so that when we continue all
|
|
# threads will be set running.
|
|
gdb_test_no_output "set scheduler-locking off"
|
|
|
|
# Continue until exit. The server sends a 'W' with no PID.
|
|
# Bad GDB gave an error like below when target is nonstop:
|
|
# (gdb) c
|
|
# Continuing.
|
|
# No process or thread specified in stop reply: W00
|
|
gdb_continue_to_end "" continue 1
|
|
}
|
|
|
|
# Disable different features within gdbserver:
|
|
#
|
|
# Tthread: Start GDBserver, with ";thread:NNN" in T stop replies disabled,
|
|
# emulating old gdbservers when debugging single-threaded programs.
|
|
#
|
|
# T: Start GDBserver with the entire 'T' stop reply packet disabled,
|
|
# GDBserver will instead send the 'S' stop reply.
|
|
#
|
|
# Also test both all-stop and non-stop variants of the remote
|
|
# protocol.
|
|
foreach_with_prefix target-non-stop {"off" "on"} {
|
|
foreach_with_prefix to_disable { "" Tthread T } {
|
|
run_test ${target-non-stop} $to_disable
|
|
}
|
|
}
|