]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/style.exp
Style locations when setting a breakpoint
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / style.exp
CommitLineData
cbe56571
TT
1# Copyright 2018 Free Software Foundation, Inc.
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# Test CLI output styling.
17
18standard_testfile
19
20save_vars { env(TERM) } {
21 # We need an ANSI-capable terminal to get the output.
22 setenv TERM ansi
23
24 if {[prepare_for_testing "failed to prepare" $testfile $srcfile]} {
25 return -1
26 }
27
28 if {![runto_main]} {
29 fail "style tests failed"
30 return
31 }
32
33 gdb_test_no_output "set style enabled on"
34
35 set main_expr "\033\\\[33mmain\033\\\[m"
0bb296cb
TT
36 set base_file_expr "\033\\\[32m.*style\\.c\033\\\[m"
37 set file_expr "$base_file_expr:\[0-9\]"
80ae2043 38 set arg_expr "\033\\\[36marg.\033\\\[m"
cbe56571
TT
39
40 gdb_test "frame" \
80ae2043 41 "$main_expr.*$arg_expr.*$arg_expr.*$file_expr.*"
cbe56571 42 gdb_test "info breakpoints" "$main_expr at $file_expr.*"
0bb296cb
TT
43
44 gdb_test "break main" "file $base_file_expr.*"
cbe56571 45}