]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/style-interp-exec-mi.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / style-interp-exec-mi.exp
CommitLineData
1d506c26 1# Copyright 2020-2024 Free Software Foundation, Inc.
e1ff6226
PW
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
16# It was observed that when doing:
17#
18# - backtrace
19# - an "interpreter-exec mi" command
20# - backtrace again
21#
22# The second backtrace would not be styled. This test tests that.
23
24standard_testfile
25
4ebfd53d 26with_ansi_styling_terminal {
e1ff6226
PW
27 if { [prepare_for_testing "failed to prepare" \
28 ${testfile} ${srcfile}] } {
29 return
30 }
31
32 if { ![runto_main] } {
e1ff6226
PW
33 return
34 }
35
36 gdb_test_no_output "set style enabled on"
37 set main_expr [style main function]
38 gdb_test "backtrace" ".* ${main_expr} .*" "backtrace before"
39 gdb_test "interpreter-exec mi \"-data-evaluate-expression 1\"" \
40 "\\^done,value=\"1\""
41 gdb_test "backtrace" ".* ${main_expr} .*" "backtrace after"
42}