1 # Copyright (C) 2013-2023 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/>.
18 if [prepare_for_testing "failed to prepare for testing" \
19 ${testfile} ${srcfile} {debug}] {
23 # Pretend there's no terminal.
24 gdb_test_no_output "set interactive-mode off"
30 # Delete breakpoints so that the next resume is a plain continue,
31 # instead of a step-over-breakpoint sequence just while GDB sends the
32 # interrupt request. If that's buggy on some targets (and it was on
33 # target remote for a while, where a ctrl-c at the wrong time will get
34 # lost), then it should get its own specific test. Disable
35 # confirmation, avoiding complications caused by the fact that we've
36 # disabled the terminal -- GDB would auto-answer "yes", confusing
38 gdb_test_no_output "set confirm off"
39 gdb_test_no_output "delete"
40 gdb_test_no_output "set confirm on"
42 set async_supported -1
44 gdb_test_multiple $test $test {
45 -re "Continuing\\.\r\n$gdb_prompt $" {
49 -re ".*Asynchronous execution not supported on this target..*" {
53 if { $async_supported < 0 } {
57 # With native debugging, and no terminal (emulated by interactive-mode
58 # off, above), GDB had a bug where "interrupt" would send SIGINT to
59 # its own process group, instead of the inferior's.
61 gdb_test_multiple $test $test {
62 -re "interrupt\r\n$gdb_prompt " {
67 set test "inferior received SIGINT"
68 gdb_test_multiple "" $test {
69 -re "\r\nProgram received signal SIGINT.*" {
70 # This appears after the prompt, which was already consumed