[gdb/testsuite] Fix unrecognized debug output level 'statement-frontiers' message
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / step-and-next-inline.exp
1 # Copyright 2019-2020 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 standard_testfile .cc
17
18 if { ![supports_statement_frontiers] } {
19 return -1
20 }
21
22 # Compile the test source with USE_NEXT_INLINE_H defined (when
23 # use_header is true), or not defined.
24 proc do_test { use_header } {
25 global srcfile testfile
26
27 set options {c++ debug nowarnings optimize=-O2\ -gstatement-frontiers}
28 if { $use_header } {
29 lappend options additional_flags=-DUSE_NEXT_INLINE_H
30 set executable "$testfile-with-header"
31 set hdrfile "step-and-next-inline.h"
32 set prefix "use_header"
33 } else {
34 set executable "$testfile-no-header"
35 set hdrfile "$srcfile"
36 set prefix "no_header"
37 }
38
39 if { [prepare_for_testing "failed to prepare" $executable \
40 $srcfile $options] } {
41 return -1
42 }
43
44 with_test_prefix $prefix {
45
46 if ![runto_main] {
47 fail "can't run to main"
48 return
49 }
50
51 gdb_test "bt" "\\s*\\#0\\s+main.*" "in main"
52 gdb_test "step" ".*" "step into get_alias_set"
53 gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
54 "not in inline 1"
55 # It's possible that this first failure (when not using a header
56 # file) is GCC's fault, though the remaining failures would best
57 # be fixed by adding location views support (though it could be
58 # that some easier heuristic could be figured out). Still, it is
59 # not certain that the first failure wouldn't also be fixed by
60 # having location view support, so for now it is tagged as such.
61 if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
62 gdb_test "next" ".*TREE_TYPE.*" "next step 1"
63 gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
64 "not in inline 2"
65 gdb_test "next" ".*TREE_TYPE.*" "next step 2"
66 gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
67 "not in inline 3"
68 if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
69 gdb_test "next" ".*TREE_TYPE.*" "next step 3"
70 gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
71 "not in inline 4"
72 if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
73 gdb_test "next" "return 0.*" "next step 4"
74 gdb_test "bt" \
75 "\\s*\\#0\\s+(main|get_alias_set)\[^\r\]*${srcfile}:.*" \
76 "not in inline 5"
77
78 if {!$use_header} {
79 # With the debug from GCC 10.x (and earlier) GDB is currently
80 # unable to successfully complete the following tests when we
81 # are not using a header file.
82 kfail symtab/25507 "stepping tests"
83 return
84 }
85
86 clean_restart ${executable}
87
88 if ![runto_main] {
89 fail "can't run to main pass 2"
90 return
91 }
92
93 gdb_test "bt" "\\s*\\#0\\s+main.*" "in main pass 2"
94 gdb_test "step" ".*" "step into get_alias_set pass 2"
95 gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
96 "in get_alias_set pass 2"
97 gdb_test "step" ".*TREE_TYPE.*" "step 1"
98 gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
99 "not in inline 1 pass 2"
100 gdb_test "step" ".*if \\(t->x != i\\).*" "step 2"
101 gdb_test "bt" "\\s*\\#0\\s+\[^\r\]*tree_check\[^\r\]*${hdrfile}:.*" \
102 "in inline 1 pass 2"
103 gdb_test "step" ".*TREE_TYPE.*" "step 3"
104 gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
105 "not in inline 2 pass 2"
106 gdb_test "step" ".*if \\(t->x != i\\).*" "step 4"
107 gdb_test "bt" "\\s*\\#0\\s+\[^\r\]*tree_check\[^\r\]*${hdrfile}:.*" \
108 "in inline 2 pass 2"
109 gdb_test "step" ".*TREE_TYPE.*" "step 5"
110 gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
111 "not in inline 3 pass 2"
112 gdb_test "step" ".*if \\(t->x != i\\).*" "step 6"
113 gdb_test "bt" "\\s*\\#0\\s+\[^\r\]*tree_check\[^\r\]*${hdrfile}:.*" \
114 "in inline 3 pass 2"
115 gdb_test "step" "return 0.*" "step 7"
116 gdb_test "bt" \
117 "\\s*\\#0\\s+(main|get_alias_set)\[^\r\]*${srcfile}:.*" \
118 "not in inline 4 pass 2"
119 }
120 }
121
122 do_test 0
123 do_test 1
This page took 0.040258 seconds and 5 git commands to generate.