1 # Copyright 1999-2019 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.
27 if ![runto_main] then {
28 fail "can't run to main"
32 # NOTE: this prompt is OK only when the annotation level is > 1
33 # NOTE: When this prompt is in use the gdb_test procedure cannot be
34 # used because it assumes that the last char after the gdb_prompt is a
35 # white space. This is not true with this annotated prompt. So we
36 # must use the gdb_annota_test replacement below, or
39 set old_gdb_prompt $gdb_prompt
40 set gdb_prompt "\r\n\032\032pre-prompt\r\n$gdb_prompt \r\n\032\032prompt\r\n"
42 # Like gdb_test, but cope with the annotation prompt.
43 proc gdb_annota_test {command pattern message} {
46 gdb_test_multiple $command $message {
47 -re "$pattern$gdb_prompt$" {
56 # Set the annotation level to 2.
57 gdb_annota_test "set annotate 2" ".*" "annotation set at level 2"
59 set test "delete breakpoints"
60 gdb_test_multiple "delete" $test {
61 -re "Delete all breakpoints. .y or n." {
70 # Set the target running, and then type something. GDB used to have a
71 # bug where it'd be accepting input even though the target was
72 # supposedly resumed in the foreground. This ultimately resulted in
75 set linenum [gdb_get_line_number "set break here"]
77 gdb_annota_test "break $linenum" \
78 "Breakpoint .*$srcfile, line .*" \
81 # Continue, and wait a bit to make sure the inferior really starts
82 # running. Wait less than much the program sleeps, which is 5
86 gdb_test_multiple $test $test {
93 gdb_assert $saw_continuing $test
100 # Poor buggy GDB would crash before the breakpoint was hit.
101 set test "breakpoint hit"
102 gdb_test_multiple "" $test {
103 -re "stopped\r\n$gdb_prompt" {
108 set test "print command result"
109 gdb_test_multiple "" $test {
110 -re "\r\n1\r\n\r\n\032\032value-history-end\r\n$gdb_prompt" {
115 # Restore the original prompt for the rest of the testsuite.
117 set gdb_prompt $old_gdb_prompt