1 # Copyright 1999-2024 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/>.
16 # Test that annotations support doesn't leave GDB's terminal settings
17 # into effect when we run a foreground command.
21 if {[prepare_for_testing "failed to prepare" $testfile $srcfile debug] == -1} {
25 # Because runto_main doesn't know how to handle the prompt with annotations,
26 # run to main before we set the annotation level.
31 # NOTE: this prompt is OK only when the annotation level is > 1
32 # NOTE: When this prompt is in use the gdb_test procedure cannot be
33 # used because it assumes that the last char after the gdb_prompt is a
34 # white space. This is not true with this annotated prompt. So we
35 # must use the gdb_annota_test replacement below, or
38 set old_gdb_prompt $gdb_prompt
39 set gdb_prompt "\r\n\032\032pre-prompt\r\n$gdb_prompt \r\n\032\032prompt\r\n"
41 # Like gdb_test, but cope with the annotation prompt.
42 proc gdb_annota_test {command pattern message} {
45 gdb_test_multiple $command $message {
46 -re "$pattern$gdb_prompt$" {
55 # Set the annotation level to 2.
56 gdb_annota_test "set annotate 2" ".*" "annotation set at level 2"
58 set test "delete breakpoints"
59 gdb_test_multiple "delete" $test {
60 -re "Delete all breakpoints, watchpoints, tracepoints, and catchpoints. .y or n." {
69 # Set the target running, and then type something. GDB used to have a
70 # bug where it'd be accepting input even though the target was
71 # supposedly resumed in the foreground. This ultimately resulted in
74 set linenum [gdb_get_line_number "set break here"]
76 gdb_annota_test "break $linenum" \
77 "Breakpoint .*$srcfile, line .*" \
80 # Continue, and wait a bit to make sure the inferior really starts
81 # running. Wait less than much the program sleeps, which is 5
85 gdb_test_multiple $test $test {
92 gdb_assert $saw_continuing $test
99 # Poor buggy GDB would crash before the breakpoint was hit.
100 set test "breakpoint hit"
101 gdb_test_multiple "" $test {
102 -re "stopped\r\n$gdb_prompt" {
107 set test "print command result"
108 gdb_test_multiple "" $test {
109 -re "\r\n1\r\n\r\n\032\032value-history-end\r\n$gdb_prompt" {
114 # Restore the original prompt for the rest of the testsuite.
116 set gdb_prompt $old_gdb_prompt