]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - 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
CommitLineData
be6a2dca
TV
1# This testcase is part of GDB, the GNU debugger.
2
213516ef 3# Copyright 2022-2023 Free Software Foundation, Inc.
be6a2dca
TV
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
20load_lib gdbserver-support.exp
21
22standard_testfile server.c
23
24if { [skip_gdbserver_tests] } {
25 return 0
26}
27
28if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
29 return -1
30}
31
32save_vars { GDBFLAGS } {
33 # If GDB and GDBserver are both running locally, set the sysroot to avoid
34 # reading files via the remote protocol.
35 if { ![is_remote host] && ![is_remote target] } {
36 set GDBFLAGS "$GDBFLAGS -ex \"set sysroot\""
37 }
38
39 clean_restart $binfile
40}
41
42# Make sure we're disconnected, in case we're testing with an
43# extended-remote board, therefore already connected.
44gdb_test "disconnect" ".*"
45
46set target_exec [gdbserver_download_current_prog]
47
48set res [gdbserver_start "" $target_exec]
49
50set gdbserver_protocol [lindex $res 0]
51set gdbserver_gdbport [lindex $res 1]
52gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport
53
54gdb_test_no_output "monitor exit"
55gdb_test_no_output "set confirm off"
56
57set do_cleanup 1
58
59gdb_test_multiple "quit" "" {
60 -re -wrap "" {
61 fail "$gdb_test_name (prompt)"
62 # Let default_gdb_exit do the cleanup.
63 set do_cleanup 0
64 }
65 -early -re "DOSEXIT code" {
66 pass "$gdb_test_name"
67 }
68 -early eof {
69 pass "$gdb_test_name"
70 }
71}
72
73# Cleanup, as in default_gdb_exit.
74if { $do_cleanup } {
75 if ![is_remote host] {
76 remote_close host
77 }
78 unset gdb_spawn_id
79 unset ::gdb_tty_name
80 unset inferior_spawn_id
81}