mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-25 08:47:28 +00:00
With commit fb2ded33c1, I added
Fedora's gstack script to gdb. Some issues have arisen since
then, and this patch addresses those issues:
. As Sam James recently noted[1], PKGVERSION and VERSION
need to be quoted.
. A Fedora user reported the misuse of --readnever, which
causes gstack to omit filename and line number information in the
backtrace[Red Hat BZ 2354997].
[1] https://inbox.sourceware.org/gdb-patches/d19d6bc17e0a160ce27fc572079f11a587c0e168.1742424869.git.sam@gentoo.org/
Bug: https://bugzilla.redhat.com/show_bug.cgi?id=2354997
97 lines
2.5 KiB
Plaintext
97 lines
2.5 KiB
Plaintext
# Copyright (C) 2024-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/>.
|
|
|
|
require !gdb_protocol_is_remote
|
|
require can_spawn_for_attach
|
|
|
|
standard_testfile
|
|
|
|
if {[build_executable "failed to prepare" $testfile $srcfile {debug}] == -1} {
|
|
return -1
|
|
}
|
|
|
|
set command "$binfile"
|
|
set res [remote_spawn host $command]
|
|
if { ![gdb_assert { ![expr {$res < 0 || $res == ""}] } "spawn inferior"] } {
|
|
return
|
|
}
|
|
|
|
# The spawn id of the test inferior.
|
|
set test_spawn_id $res
|
|
|
|
# Wait for the spawned program to loop.
|
|
set test "wait for inferior to loop"
|
|
gdb_expect {
|
|
-re "looping\r\n" {
|
|
pass $test
|
|
}
|
|
eof {
|
|
fail "$test (eof)"
|
|
return
|
|
}
|
|
timeout {
|
|
fail "$test (timeout)"
|
|
return
|
|
}
|
|
}
|
|
|
|
# The test case uses a very simple notification not to get caught by attach on
|
|
# exiting the function.
|
|
|
|
set test "spawn gstack"
|
|
set pid [spawn_id_get_pid $test_spawn_id]
|
|
set gstack_cmd [findfile $base_dir/../../gdb/gstack]
|
|
set command "sh -c GDB=$GDB\\ GDBARGS=-data-directory\\\\\\ $GDB_DATA_DIRECTORY\\ $gstack_cmd\\ $pid\\;echo\\ GSTACK-END"
|
|
set res [remote_spawn host $command]
|
|
if { ![gdb_assert { ![expr {$res < 0 || $res == ""}] } $test] } {
|
|
return
|
|
}
|
|
|
|
set test "got backtrace"
|
|
set saw_backtrace false
|
|
set no_awk false
|
|
set location_re ${srcfile}:${decimal}
|
|
|
|
gdb_expect {
|
|
-i "$res" -re "#0 +(0x\[0-9a-f\]+ in )?main \(\).*$location_re.*\r\nGSTACK-END\r\n\$" {
|
|
set saw_backtrace true
|
|
pass $test
|
|
exp_continue
|
|
}
|
|
|
|
-i "$res" "could not find usable awk interpreter" {
|
|
set no_awk true
|
|
exp_continue
|
|
}
|
|
|
|
eof {
|
|
set result [wait -i $res]
|
|
verbose $result
|
|
|
|
gdb_assert { [lindex $result 2] == 0 } "gstack exits with no error"
|
|
gdb_assert { [lindex $result 3] == 0 } "gstack's exit status is 0"
|
|
|
|
remote_close host
|
|
}
|
|
}
|
|
if {$no_awk} {
|
|
unsupported "no awk interpreter found"
|
|
} elseif {!$saw_backtrace} {
|
|
fail $test
|
|
}
|
|
|
|
# Kill the test inferior.
|
|
kill_wait_spawned_process $test_spawn_id
|