aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiezhu Yang <yangtiezhu@loongson.cn>2022-03-16 14:36:09 +0800
committerTiezhu Yang <yangtiezhu@loongson.cn>2022-03-23 11:56:34 +0800
commit11c19d73c35e6ce74a51302233199ddaa9551f09 (patch)
tree2228d02c464fafa229baeb807cf4036911debef3
parent9457d59e9d11520e356ec7c974272d555ea8154b (diff)
downloadgdb-11c19d73c35e6ce74a51302233199ddaa9551f09.zip
gdb-11c19d73c35e6ce74a51302233199ddaa9551f09.tar.gz
gdb-11c19d73c35e6ce74a51302233199ddaa9551f09.tar.bz2
gdb: testsuite: remove attach test from can_spawn_for_attach
As Pedro Alves said, caching procs should not issue pass/fail [1], this commit removes attach test from can_spawn_for_attach, at the same time, use "verbose -log" instead of "unsupported" to get a trace about why a test run doesn't support spawning for attach. [1] https://sourceware.org/pipermail/gdb-patches/2022-March/186311.html Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
-rw-r--r--gdb/testsuite/lib/gdb.exp52
1 files changed, 9 insertions, 43 deletions
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index 729bded..892bf07 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -5122,12 +5122,12 @@ proc gdb_exit { } {
# Return true if we can spawn a program on the target and attach to
# it.
-gdb_caching_proc can_spawn_for_attach {
+proc can_spawn_for_attach { } {
# We use exp_pid to get the inferior's pid, assuming that gives
# back the pid of the program. On remote boards, that would give
# us instead the PID of e.g., the ssh client, etc.
if [is_remote target] then {
- unsupported "skip attach tests (target is remote)"
+ verbose -log "can't spawn for attach (target is remote)"
return 0
}
@@ -5135,50 +5135,10 @@ gdb_caching_proc can_spawn_for_attach {
# stub-like, where GDB finds the program already started on
# initial connection.
if {[target_info exists use_gdb_stub]} {
- unsupported "skip attach tests (target is stub)"
+ verbose -log "can't spawn for attach (target is stub)"
return 0
}
- set me "can_spawn_for_attach"
- set src { int main (void) { sleep (600); return 0; } }
- if {![gdb_simple_compile $me $src executable]} {
- return 0
- }
-
- set test_spawn_id [spawn_wait_for_attach $obj]
- set test_pid [spawn_id_get_pid $test_spawn_id]
-
- gdb_start
- file delete $obj
- gdb_test_multiple "attach $test_pid" "can spawn for attach" {
- -re -wrap "Attaching to process $test_pid\r\n.*No executable file now.*" {
- pass $gdb_test_name
- kill_wait_spawned_process $test_spawn_id
- return 1
- }
- -re -wrap "Attaching to process $test_pid\r\n.*ptrace: Operation not permitted\\." {
- unsupported "$gdb_test_name (Operation not permitted)"
- kill_wait_spawned_process $test_spawn_id
- return 0
- }
- -re -wrap "Attaching to process $test_pid\r\n.*Attaching to process $test_pid failed" {
- unsupported "$gdb_test_name (Attaching to process failed)"
- kill_wait_spawned_process $test_spawn_id
- return 0
- }
- -re -wrap "Attaching to process $test_pid\r\n.*XML support was disabled at compile time.*" {
- pass $gdb_test_name
- kill_wait_spawned_process $test_spawn_id
- return 1
- }
- -re "A program is being debugged already. Kill it. .y or n. " {
- send_gdb "y\n"
- exp_continue
- }
- }
-
- kill_wait_spawned_process $test_spawn_id
-
# Assume yes.
return 1
}
@@ -5228,6 +5188,12 @@ proc spawn_id_get_pid { spawn_id } {
proc spawn_wait_for_attach { executable_list } {
set spawn_id_list {}
+ if ![can_spawn_for_attach] {
+ # The caller should have checked can_spawn_for_attach itself
+ # before getting here.
+ error "can't spawn for attach with this target/board"
+ }
+
foreach {executable} $executable_list {
# Note we use Expect's spawn, not Tcl's exec, because with
# spawn we control when to wait for/reap the process. That