Style locations when setting a breakpoint
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / style.exp
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
18 standard_testfile
19
20 save_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"
36 set base_file_expr "\033\\\[32m.*style\\.c\033\\\[m"
37 set file_expr "$base_file_expr:\[0-9\]"
38 set arg_expr "\033\\\[36marg.\033\\\[m"
39
40 gdb_test "frame" \
41 "$main_expr.*$arg_expr.*$arg_expr.*$file_expr.*"
42 gdb_test "info breakpoints" "$main_expr at $file_expr.*"
43
44 gdb_test "break main" "file $base_file_expr.*"
45 }
This page took 0.054174 seconds and 5 git commands to generate.