1 # This testcase is part of GDB, the GNU debugger.
3 # Copyright 2022-2024 Free Software Foundation, Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # Test quitting after monitor exit.
20 load_lib gdbserver-support.exp
22 standard_testfile server.c
24 require allow_gdbserver_tests
26 if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
30 save_vars { GDBFLAGS } {
31 # If GDB and GDBserver are both running locally, set the sysroot to avoid
32 # reading files via the remote protocol.
33 if { ![is_remote host] && ![is_remote target] } {
34 set GDBFLAGS "$GDBFLAGS -ex \"set sysroot\""
37 clean_restart $binfile
40 # Make sure we're disconnected, in case we're testing with an
41 # extended-remote board, therefore already connected.
42 gdb_test "disconnect" ".*"
44 set target_exec [gdbserver_download_current_prog]
46 set res [gdbserver_start "" $target_exec]
48 set gdbserver_protocol [lindex $res 0]
49 set gdbserver_gdbport [lindex $res 1]
50 gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport
52 gdb_test_no_output "monitor exit"
53 gdb_test_no_output "set confirm off"
57 gdb_test_multiple "quit" "" {
59 fail "$gdb_test_name (prompt)"
60 # Let default_gdb_exit do the cleanup.
63 -early -re "DOSEXIT code" {
71 # Cleanup, as in default_gdb_exit.
73 if ![is_remote host] {
78 unset inferior_spawn_id