[PATCH 5/57][Arm][GAS] Add support for MVE instructions: vmull{b,t}
[binutils-gdb.git] / gdb / testsuite / gdb.base / skip.exp
blob32e8634169dd07a581d9fffb4f57109f56c7a363
1 #   Copyright 2011-2019 Free Software Foundation, Inc.
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.
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.
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/>.
16 # This file was written by Justin Lebar. (justin.lebar@gmail.com)
17 # And further hacked on by Doug Evans. (dje@google.com)
19 load_lib completion-support.exp
21 standard_testfile
23 if { [prepare_for_testing "failed to prepare" "skip" \
24                           {skip.c skip1.c } \
25                           {debug nowarnings}] } {
26     return -1
29 set srcfile skip.c
30 set srcfile1 skip1.c
32 # Right after we start gdb, there's no default file or function to skip.
34 gdb_test "skip file" "No default file now." "skip file (no default file)"
35 gdb_test "skip function" "No default function now."
36 gdb_test "skip" "No default function now." "skip (no default function)"
38 # Test elided args.
40 gdb_test "skip -fi" "Missing value for -fi option."
41 gdb_test "skip -file" "Missing value for -file option."
42 gdb_test "skip -fu" "Missing value for -fu option."
43 gdb_test "skip -function" "Missing value for -function option."
44 gdb_test "skip -rfu" "Missing value for -rfu option."
45 gdb_test "skip -rfunction" "Missing value for -rfunction option."
47 # Test other invalid option combinations.
49 gdb_test "skip -x" "Invalid skip option: -x"
50 gdb_test "skip -rfu foo.* xyzzy" "Invalid argument: xyzzy"
52 if ![runto_main] {
53     fail "can't run to main"
54     return
57 # Test |info skip| with an empty skiplist.
59 gdb_test "info skip" "Not skipping any files or functions\." "info skip empty"
61 # Create a skiplist entry for the current file and function.
63 gdb_test "skip file" "File .*$srcfile will be skipped when stepping\." "skip file ($srcfile)"
64 gdb_test "skip" "Function main will be skipped when stepping\." "skip (main)"
66 # Create a skiplist entry for a specified file and function.
68 gdb_test "skip file skip1.c" "File .*$srcfile1 will be skipped when stepping\."
69 gdb_test "skip function baz" "Function baz will be skipped when stepping\."
71 # Test bad skiplist entry modification commands
73 gdb_test "skip enable 999" "No skiplist entries found with number 999."
74 gdb_test "skip disable 999" "No skiplist entries found with number 999."
75 gdb_test "skip delete 999" "No skiplist entries found with number 999."
76 gdb_test "skip enable a" "Arguments must be numbers or '\\$' variables."
77 gdb_test "skip disable a" "Arguments must be numbers or '\\$' variables."
78 gdb_test "skip delete a" "Arguments must be numbers or '\\$' variables."
80 # Ask for info on a skiplist entry which doesn't exist.
82 gdb_test "info skip 999" "No skiplist entries found with number 999."
84 # Does |info skip| look right?
86 gdb_test "info skip" \
87     "Num\\s+Enb\\s+Glob\\s+File\\s+RE\\s+Function\\s*
88 1\\s+y\\s+n\\s+.*$srcfile\\s+n\\s+<none>\\s*
89 2\\s+y\\s+n\\s+<none>\\s+n\\s+main\\s*
90 3\\s+y\\s+n\\s+$srcfile1\\s+n\\s+<none>\\s*
91 4\\s+y\\s+n\\s+<none>\\s+n\\s+baz\\s*"
93 # Right now, we have an outstanding skiplist entry on both source
94 # files, so when we step into the first line in main(), we should step
95 # right over it and go to the second line of main().
97 if ![runto_main] {
98     fail "can't run to main"
99     return
102 gdb_test "step" ".*" "step in the main"
103 gdb_test "bt" "\\s*\\#0\\s+main.*" "step after all ignored"
105 # Now remove skip.c from the skiplist.  Our first step should take us
106 # into foo(), and our second step should take us to the next line in main().
108 with_test_prefix "step after deleting 1" {
109     gdb_test "skip delete 1"
110     # Check that entry 1 is missing from |info skip|
111     gdb_test "info skip" \
112         "Num\\s+Enb\\s+Glob\\s+File\\s+RE\\s+Function\\s*
113 2\\s+y\\s+n\\s+<none>\\s+n\\s+main\\s*
114 3\\s+y\\s+n\\s+$srcfile1\\s+n\\s+<none>\\s*
115 4\\s+y\\s+n\\s+<none>\\s+n\\s+baz\\s*" \
116         "info skip (delete 1)"
118     if ![runto_main] {
119         fail "can't run to main"
120         return
121     }
123     gdb_test "step" "foo \\(\\) at.*" "step 1"
124     gdb_test "step" ".*" "step 2" ; # Return from foo()
125     gdb_test "step" "main \\(\\) at.*" "step 3"
128 # Now disable the skiplist entry for  skip1.c.  We should now
129 # step into foo(), then into bar(), but not into baz().
131 with_test_prefix "step after disabling 3" {
132     gdb_test "skip disable 3"
133     # Is entry 3 disabled in |info skip|?
134     gdb_test "info skip 3" \
135         "3\\s+n\\s+n\\s+$srcfile1\\s+n\\s+<none>\\s*" \
136         "info skip shows entry as disabled"
138     if ![runto_main] {
139         fail "can't run to main"
140         return
141     }
143     gdb_test "step" "bar \\(\\) at.*" "step 1"
144     gdb_test "step" ".*" "step 2"; # Return from foo()
145     gdb_test "step" "foo \\(\\) at.*" "step 3"
146     gdb_test "step" ".*" "step 4"; # Return from bar()
147     gdb_test "step" "main \\(\\) at.*" "step 5"
150 # Enable skiplist entry 3 and make sure we step over it like before.
152 with_test_prefix "step after enable 3" {
153     gdb_test "skip enable 3"
154     # Is entry 3 enabled in |info skip|?
155     gdb_test "info skip 3" \
156         "3\\s+y\\s+n\\s+$srcfile1\\s+n\\s+<none>\\s*" \
157         "info skip shows entry as enabled"
159     if ![runto_main] {
160         fail "can't run to main"
161         return
162     }
164     gdb_test "step" "foo \\(\\) at.*" "step 1"
165     gdb_test "step" ".*" "step 2"; # Return from foo()
166     gdb_test "step" "main \\(\\) at.*" "step 3"
169 # Admin tests (disable,enable,delete).
171 with_test_prefix "admin" {
172     gdb_test "skip disable"
173     gdb_test "info skip" \
174         "Num\\s+Enb\\s+Glob\\s+File\\s+RE\\s+Function\\s*
175 2\\s+n\\s+n\\s+<none>\\s+n\\s+main\\s*
176 3\\s+n\\s+n\\s+$srcfile1\\s+n\\s+<none>\\s*
177 4\\s+n\\s+n\\s+<none>\\s+n\\s+baz\\s*" \
178         "info skip after disabling all"
180     gdb_test "skip enable"
181     gdb_test "info skip" \
182         "Num\\s+Enb\\s+Glob\\s+File\\s+RE\\s+Function\\s*
183 2\\s+y\\s+n\\s+<none>\\s+n\\s+main\\s*
184 3\\s+y\\s+n\\s+$srcfile1\\s+n\\s+<none>\\s*
185 4\\s+y\\s+n\\s+<none>\\s+n\\s+baz\\s*" \
186         "info skip after enabling all"
188     gdb_test "skip disable 4 2-3"
189     gdb_test "info skip" \
190         "Num\\s+Enb\\s+Glob\\s+File\\s+RE\\s+Function\\s*
191 2\\s+n\\s+n\\s+<none>\\s+n\\s+main\\s*
192 3\\s+n\\s+n\\s+$srcfile1\\s+n\\s+<none>\\s*
193 4\\s+n\\s+n\\s+<none>\\s+n\\s+baz\\s*" \
194         "info skip after disabling 4 2-3"
196     gdb_test "skip enable 2-3"
197     gdb_test "info skip" \
198         "Num\\s+Enb\\s+Glob\\s+File\\s+RE\\s+Function\\s*
199 2\\s+y\\s+n\\s+<none>\\s+n\\s+main\\s*
200 3\\s+y\\s+n\\s+$srcfile1\\s+n\\s+<none>\\s*
201 4\\s+n\\s+n\\s+<none>\\s+n\\s+baz\\s*" \
202         "info skip after enabling 2-3"
204     gdb_test "info skip 2-3" \
205         "Num\\s+Enb\\s+Glob\\s+File\\s+RE\\s+Function\\s*
206 2\\s+y\\s+n\\s+<none>\\s+n\\s+main\\s*
207 3\\s+y\\s+n\\s+$srcfile1\\s+n\\s+<none>\\s*" \
208         "info skip 2-3"
210     gdb_test "skip delete 2 3"
211     gdb_test "info skip" \
212         "Num\\s+Enb\\s+Glob\\s+File\\s+RE\\s+Function\\s*
213 4\\s+n\\s+n\\s+<none>\\s+n\\s+baz\\s*" \
214         "info skip after deleting 2 3"
216     gdb_test "skip delete"
217     gdb_test "info skip" "Not skipping any files or functions\." \
218         "info skip after deleting all"
221 # Now test skip -fi, etc.
223 # Create a skiplist entry for a specified file and function.
224 gdb_test "skip -fi skip1.c" "File .*$srcfile1 will be skipped when stepping\."
225 gdb_test "skip -gfi sk*1.c" "File\\(s\\) sk\\*1.c will be skipped when stepping\."
226 gdb_test "skip -fu baz" "Function baz will be skipped when stepping\."
227 gdb_test "skip -rfu ^b.z$" "Function\\(s\\) \\^b\\.z\\$ will be skipped when stepping."
229 with_test_prefix "step using -fi" {
230     if ![runto_main] {
231         fail "can't run to main"
232         return
233     }
235     gdb_test_no_output "skip disable"
236     gdb_test_no_output "skip enable 5"
237     gdb_test "step" "foo \\(\\) at.*" "step 1"
238     gdb_test "step" ".*" "step 2"; # Return from foo()
239     gdb_test "step" "main \\(\\) at.*" "step 3"
242 with_test_prefix "step using -gfi" {
243     if ![runto_main] {
244         fail "can't run to main"
245         return
246     }
248     gdb_test_no_output "skip disable"
249     gdb_test_no_output "skip enable 6"
250     gdb_test "step" "foo \\(\\) at.*" "step 1"
251     gdb_test "step" ".*" "step 2"; # Return from foo()
252     gdb_test "step" "main \\(\\) at.*" "step 3"
255 with_test_prefix "step using -fu for baz" {
256     if ![runto_main] {
257         fail "can't run to main"
258         return
259     }
261     gdb_test_no_output "skip disable"
262     gdb_test_no_output "skip enable 7"
263     gdb_test "step" "bar \\(\\) at.*" "step 1"
264     gdb_test "step" ".*" "step 2"; # Return from bar()
265     gdb_test "step" "foo \\(\\) at.*" "step 3"
266     gdb_test "step" ".*" "step 4"; # Return from foo()
267     gdb_test "step" "main \\(\\) at.*" "step 5"
270 with_test_prefix "step using -rfu for baz" {
271     if ![runto_main] {
272         fail "can't run to main"
273         return
274     }
276     gdb_test_no_output "skip disable"
277     gdb_test_no_output "skip enable 8"
278     gdb_test "step" "bar \\(\\) at.*" "step 1"
279     gdb_test "step" ".*" "step 2"; # Return from bar()
280     gdb_test "step" "foo \\(\\) at.*" "step 3"
281     gdb_test "step" ".*" "step 4"; # Return from foo()
282     gdb_test "step" "main \\(\\) at.*" "step 5"
285 # Test -fi + -fu.
287 with_test_prefix "step using -fi + -fu" {
288     gdb_test_no_output "skip delete"
290     if ![runto test_skip_file_and_function no-message] {
291         fail "can't run to test_skip_file_and_function"
292         return
293     }
295     gdb_test "skip -fi skip1.c -fu test_skip" \
296         "Function test_skip in file skip1.c will be skipped when stepping\."
297     # Verify we can step into skip.c:test_skip but not skip1.c:test_skip.
298     gdb_test "step" "test_skip \\(\\) at.*" "step 1"
299     gdb_test "step" "test_skip_file_and_function \\(\\) at.*" "step 2"; # Return from test_skip()
300     gdb_test "step" "skip1_test_skip_file_and_function \\(\\) at.*" "step 3"
301     gdb_test "step" ".*" "step 4"; # Skip over test_skip()
302     gdb_test "step" "test_skip_file_and_function \\(\\) at.*" "step 5"; # Return from skip1_test_skip_file_and_function()
305 with_test_prefix "skip delete completion" {
306     global binfile
307     clean_restart "${binfile}"
308     if ![runto_main] {
309         fail "can't run to main"
310         return
311     }
313     # Create a bunch of skips, don't care what they are.
314     for {set i 0} {$i < 12} {incr i} {
315         gdb_test "skip" ".*" "add skip $i"
316     }
318     set all_numbers { "1" "10" "11" "12" "2" "3" "4" "5" "6" "7" "8" "9" }
320     # Test completing single numbers.
321     test_gdb_complete_multiple "skip delete " "" "" $all_numbers
322     test_gdb_complete_multiple "skip delete " "1" "" { "1" "10" "11" "12" }
323     test_gdb_complete_multiple "skip delete 2 " "" "" $all_numbers
324     test_gdb_complete_unique "skip delete 11" "skip delete 11"
326     # Test completing ranges.
327     test_gdb_complete_multiple "skip delete 2-" "" "" $all_numbers
328     test_gdb_complete_unique "skip delete 2-5" "skip delete 2-5"
330     # Test cases with no completion.
331     test_gdb_complete_none "skip delete 123"
332     test_gdb_complete_none "skip delete a1"
333     test_gdb_complete_none "skip delete 2-33"