1 # Copyright
2013-2022 Free Software Foundation
, Inc.
3 # This
program is free software
; you can redistribute it and
/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation
; either version
3 of the License
, or
6 #
(at your option
) any later version.
8 # This
program is distributed in the hope that it will be useful
,
9 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License
for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this
program.
If not
, see
<http
://www.gnu.org
/licenses
/>.
16 if [target_info
exists gdb
,nosignals
] {
17 verbose
"Skipping catch-signal.exp because of nosignals."
21 # This test requires sending ^C to interrupt the running target.
22 if [target_info
exists gdb
,nointerrupts
] {
23 verbose
"Skipping random-signal.exp because of nointerrupts."
29 if {[build_executable
"failed to prepare" $testfile $srcfile debug]} {
33 #
Set a software watchpoint
, continue, wait a bit and stop the target
34 # with ctrl
-c. A software watchpoint forces the target to
39 gdb_test_no_output
"set can-use-hw-watchpoints 0"
40 gdb_test
"watch v" "Watchpoint .*"
41 gdb_test_multiple
"continue" "continue" {
47 #
For this to work we must be sure to consume the
"Continuing."
48 # message first
, or GDB
's signal handler may not be in place.
49 after 500 {send_gdb "\003"}
50 gdb_test "" "Program received signal SIGINT.*" "stop with control-c"
53 # With native debugging and "run" (with job control), the ctrl-c
54 # always reaches the inferior, not gdb, even if ctrl-c is pressed
55 # while gdb is processing the internal software watchtpoint
56 # single-step. With remote debugging, the ctrl-c reaches GDB first.
57 with_test_prefix "run" {
58 clean_restart $binfile
67 # With "attach" however, even with native debugging, the ctrl-c always
68 # reaches GDB first. Test that as well.
69 with_test_prefix "attach" {
70 if {[can_spawn_for_attach]} {
71 clean_restart $binfile
73 set test_spawn_id [spawn_wait_for_attach $binfile]
74 set testpid [spawn_id_get_pid $test_spawn_id]
76 gdb_test "attach $testpid" "Attaching to.*process $testpid.*libc.*" "attach"
80 kill_wait_spawned_process $test_spawn_id