]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.server/monitor-exit-quit.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.server / monitor-exit-quit.exp
1 # This testcase is part of GDB, the GNU debugger.
2
3 # Copyright 2022-2024 Free Software Foundation, Inc.
4
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.
9 #
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.
14 #
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/>.
17
18 # Test quitting after monitor exit.
19
20 load_lib gdbserver-support.exp
21
22 standard_testfile server.c
23
24 require allow_gdbserver_tests
25
26 if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
27 return -1
28 }
29
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\""
35 }
36
37 clean_restart $binfile
38 }
39
40 # Make sure we're disconnected, in case we're testing with an
41 # extended-remote board, therefore already connected.
42 gdb_test "disconnect" ".*"
43
44 set target_exec [gdbserver_download_current_prog]
45
46 set res [gdbserver_start "" $target_exec]
47
48 set gdbserver_protocol [lindex $res 0]
49 set gdbserver_gdbport [lindex $res 1]
50 gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport
51
52 gdb_test_no_output "monitor exit"
53 gdb_test_no_output "set confirm off"
54
55 set do_cleanup 1
56
57 gdb_test_multiple "quit" "" {
58 -re -wrap "" {
59 fail "$gdb_test_name (prompt)"
60 # Let default_gdb_exit do the cleanup.
61 set do_cleanup 0
62 }
63 -early -re "DOSEXIT code" {
64 pass "$gdb_test_name"
65 }
66 -early eof {
67 pass "$gdb_test_name"
68 }
69 }
70
71 # Cleanup, as in default_gdb_exit.
72 if { $do_cleanup } {
73 if ![is_remote host] {
74 remote_close host
75 }
76 unset gdb_spawn_id
77 unset ::gdb_tty_name
78 unset inferior_spawn_id
79 }