]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/mi-logging.exp
Update copyright year range in all GDB files
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-logging.exp
CommitLineData
3666a048 1# Copyright 2012-2021 Free Software Foundation, Inc.
37ce89eb
SS
2
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.
7#
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.
12#
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/>.
15
16load_lib mi-support.exp
17set MIFLAGS "-i=mi"
18
298a9cf0 19standard_testfile basics.c
37ce89eb
SS
20set opts {debug}
21
298a9cf0 22if [build_executable $testfile.exp $testfile $srcfile $opts] {
5b362f04 23 untested "failed to compile"
ae59b1da 24 return -1
37ce89eb
SS
25}
26
b75d55d4
PA
27mi_clean_restart $binfile
28
29if {[mi_runto_main] < 0} {
37ce89eb
SS
30 return -1
31}
32
84741506 33set milogfile [standard_output_file "milog.txt"]
37ce89eb
SS
34
35mi_gdb_test "-gdb-set logging file $milogfile" ".*"
36
37mi_gdb_test "-gdb-set logging overwrite on" ".*"
38
39mi_gdb_test "-gdb-set logging on" ".*" "logging on"
40
41mi_step "logged step"
42
43mi_next "logged next"
44
45mi_gdb_test "-gdb-set logging off" ".*" "logging off"
46
47set chan [open $milogfile]
48set logcontent [read $chan]
49close $chan
50
51set mi_log_prompt "\[(\]gdb\[)\] \[\r\n\]+"
52
53if [regexp "\\^done\[\r\n\]+$mi_log_prompt\\^running\[\r\n\]+\\*running,thread-id=\"all\"\[\r\n\]+$mi_log_prompt\\*stopped,reason=\"end-stepping-range\",.*\[\r\n\]+$mi_log_prompt\\^running\[\r\n\]+\\*running,thread-id=\"all\"\[\r\n\]+$mi_log_prompt\\*stopped,reason=\"end-stepping-range\",.*\[\r\n\]+$mi_log_prompt" $logcontent] {
bc6c7af4 54 pass "log file contents"
37ce89eb 55} else {
bc6c7af4 56 fail "log file contents"
37ce89eb
SS
57}
58
59# Now try the redirect, which writes into the file only.
60
61mi_gdb_test "-gdb-set logging redirect on" ".*" "redirect logging on"
62
63# Since all output will be going into the file, just keep sending commands
64# and don't expect anything to appear until logging is turned off.
65
66send_gdb "1001-gdb-set logging on\n"
67send_gdb "1002-exec-step\n"
68send_gdb "1003-exec-next\n"
69
70mi_gdb_test "1004-gdb-set logging off" ".*" "redirect logging off"
71
72set chan [open $milogfile]
73set logcontent [read $chan]
74close $chan
75
76if [regexp "1001\\^done\[\r\n\]+$mi_log_prompt.*1002\\^running\[\r\n\]+\\*running,thread-id=\"all\"\[\r\n\]+$mi_log_prompt\\*stopped,reason=\"end-stepping-range\",.*\[\r\n\]+$mi_log_prompt.*1003\\^running\[\r\n\]+\\*running,thread-id=\"all\"\[\r\n\]+$mi_log_prompt\\*stopped,reason=\"end-stepping-range\",.*\[\r\n\]+$mi_log_prompt" $logcontent] {
bc6c7af4 77 pass "redirect log file contents"
37ce89eb 78} else {
bc6c7af4 79 fail "redirect log file contents"
37ce89eb
SS
80}
81
5be5dbf0
PA
82# Now try enabling a redirect while GDB is already logging. This used
83# to crash GDB.
84with_test_prefix "redirect while already logging" {
85 mi_gdb_test "-gdb-set logging redirect off" ".*" \
86 "logging redirect off"
87 mi_gdb_test "-gdb-set logging on" ".*" \
88 "logging on"
89 mi_gdb_test "-gdb-set logging redirect on" \
90 ".*warning: Currently logging .*Turn the logging off and on to make the new setting effective.*" \
91 "logging redirect on"
92 mi_gdb_test "-gdb-set logging off" ".*" \
93 "logging off"
94}
95
37ce89eb
SS
96mi_gdb_exit
97
98remote_file host delete $milogfile