Add a test case for skip with inlined functions
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / skip-inline.exp
1 # Copyright 2019 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
17
18 if { [prepare_for_testing "failed to prepare" "skip-inline" \
19 {skip-inline.c skip1.c } \
20 {debug nowarnings}] } {
21 return -1
22 }
23
24 set srcfile skip-inline.c
25 set srcfile1 skip1.c
26
27 if ![runto_main] {
28 fail "can't run to main"
29 return
30 }
31
32 # Create a skiplist entry for a specified file and function.
33
34 gdb_test "skip function foo" "Function foo will be skipped when stepping\."
35
36 gdb_test "bt" "\\s*\\#0\\s+main.*" "in the main"
37 gdb_test "step" ".*" "step into baz, since foo will be skipped"
38 gdb_test "bt" "\\s*\\#0\\s+baz.*" "in the baz, since foo was skipped"
39 gdb_test "step" ".*" "step in the baz"
40 gdb_test "bt" "\\s*\\#0\\s+baz.*" "still in the baz"
41 gdb_test "step" ".*" "step back to main"
42 gdb_test "bt" "\\s*\\#0\\s+main.*" "again in the main"
43 gdb_test "step" ".*" "step again into baz, since foo will be skipped"
44 gdb_test "bt" "\\s*\\#0\\s+baz.*" "again in the baz"
45 gdb_test "step" ".*" "step in the baz, again"
46 gdb_test "bt" "\\s*\\#0\\s+baz.*" "still in the baz, again"
47 gdb_test "step" ".*" "step back to main, again"
48 gdb_test "bt" "\\s*\\#0\\s+main.*" "again back to main"
49
50 if ![runto_main] {
51 fail "can't run to main"
52 return
53 }
54
55 with_test_prefix "double step" {
56 gdb_test "bt" "\\s*\\#0\\s+main.*" "in the main"
57 gdb_test "step 2" ".*" "step into baz, since foo will be skipped"
58 gdb_test "bt" "\\s*\\#0\\s+baz.*" "still in the baz"
59 gdb_test "step" ".*" "step back to main"
60 gdb_test "bt" "\\s*\\#0\\s+main.*" "again in the main"
61 gdb_test "step 2" ".*" "step again into baz, since foo will be skipped"
62 gdb_test "bt" "\\s*\\#0\\s+baz.*" "again in the baz"
63 gdb_test "step" ".*" "step back to main, again"
64 gdb_test "bt" "\\s*\\#0\\s+main.*" "again back to main"
65 }
66
67 if ![runto_main] {
68 fail "can't run to main"
69 return
70 }
71
72 with_test_prefix "triple step" {
73 gdb_test "bt" "\\s*\\#0\\s+main.*" "in the main"
74 gdb_test "step 3" ".*" "step over baz"
75 gdb_test "bt" "\\s*\\#0\\s+main.*" "again in the main"
76 gdb_test "step 3" ".*" "step over baz, again"
77 gdb_test "bt" "\\s*\\#0\\s+main.*" "again back to main"
78 }
This page took 0.03107 seconds and 4 git commands to generate.