gdb: add completion handler for "handle" and "signal"
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / completion.exp
CommitLineData
0b302171
JB
1# Copyright 1998-1999, 2002-2004, 2007-2012 Free Software Foundation,
2# Inc.
c906108c
SS
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
c906108c 7# (at your option) any later version.
e22f8b7c 8#
c906108c
SS
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
c906108c 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 16
c906108c
SS
17# This file was written by Elena Zannoni (ezannoni@cygnus.com)
18
19# This file is part of the gdb testsuite.
20
21#
22# tests for command completion
23#
24# Here are some useful test cases for completion.
25# They should be tested with both M-? and TAB.
26#
27# "show output-" "radix"
28# "show output" "-radix"
29# "p" ambiguous (commands starting with p--path, print, printf, etc.)
30# "p " ambiguous (all symbols)
31# "info t foo" no completions
32# "info t " no completions
33# "info t" ambiguous ("info target", "info terminal", etc.)
34# "info ajksdlfk" no completions
35# "info ajksdlfk " no completions
36# "info" " "
37# "info " ambiguous (all info commands)
a1dea79a
FF
38# "p \"break1" unambiguous (completes to filename "break1.c")
39# "p \"break1." unambiguous (should complete to "break1.c" but does not,
9b284272 40# due to readline limitations)
5ac01682
DJ
41# "p 'arg" ambiguous (all symbols starting with arg)
42# "p b-arg" ambiguous (all symbols starting with arg)
c906108c
SS
43# "p b-" ambiguous (all symbols)
44# "file Make" "file" (word break hard to screw up here)
45# "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
46#
47
48
c906108c 49
c906108c
SS
50#
51# test running programs
52#
c906108c
SS
53
54set testfile "break"
55set srcfile ${testfile}.c
a1dea79a 56set srcfile1 ${testfile}1.c
c906108c 57set binfile ${objdir}/${subdir}/${testfile}
a1dea79a 58
fc91c6c2 59if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}0.o" object {debug nowarnings}] != "" } {
b60f0898
JB
60 untested completion.exp
61 return -1
a1dea79a
FF
62}
63
fc91c6c2 64if { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${binfile}1.o" object {debug nowarnings}] != "" } {
b60f0898
JB
65 untested completion.exp
66 return -1
a1dea79a
FF
67}
68
fc91c6c2 69if { [gdb_compile "${binfile}0.o ${binfile}1.o" "${binfile}" executable {debug nowarnings}] != "" } {
b60f0898
JB
70 untested completion.exp
71 return -1
c906108c
SS
72}
73
4c93b1db 74if [get_compiler_info] {
085dd6e6
JM
75 return -1;
76}
77
c906108c 78gdb_exit
5ea2a32c 79
c906108c
SS
80gdb_start
81gdb_reinitialize_dir $srcdir/$subdir
82gdb_load ${binfile}
83
84if ![runto_main] then {
85 perror "tests suppressed"
86}
87
88set oldtimeout1 $timeout
085dd6e6 89set timeout 30
c906108c 90
8e28d804 91set test "complete 'hfgfh'"
c906108c 92send_gdb "hfgfh\t"
8e28d804
PA
93gdb_test_multiple "" "$test" {
94 -re "^hfgfh\\\x07$" {
95 send_gdb "\n"
96 gdb_test_multiple "" $test {
97 -re "Undefined command: \"hfgfh\"\\. Try \"help\"\\..*$gdb_prompt $" {
98 pass "$test"
99 }
100 }
101 }
102}
c906108c
SS
103
104#exp_internal 0
105
8e28d804 106set test "complete 'show output'"
c906108c 107send_gdb "show output\t"
8e28d804
PA
108gdb_test_multiple "" "$test" {
109 -re "^show output-radix $" {
110 send_gdb "\n"
111 gdb_test_multiple "" "$test" {
112 -re "Default output radix for printing of values is 10\\..*$gdb_prompt $" {
113 pass "$test"
114 }
115 }
116 }
117}
c906108c 118
8e28d804 119set test "complete 'show output-'"
c906108c 120send_gdb "show output-\t"
8e28d804
PA
121gdb_test_multiple "" "$test" {
122 -re "^show output-radix $" {
123 send_gdb "\n"
124 gdb_test_multiple "" "$test" {
125 -re "Default output radix for printing of values is 10\\..*$gdb_prompt $" {
126 pass "$test"
127 }
c906108c 128 }
8e28d804
PA
129 }
130}
c906108c 131
8e28d804 132set test "complete 'p'"
c906108c 133send_gdb "p\t"
8e28d804
PA
134gdb_test_multiple "" "$test" {
135 -re "^p\\\x07$" {
136 send_gdb "\n"
137 gdb_test_multiple "" "$test" {
138 -re "The history is empty\\..*$gdb_prompt $" {
139 pass "$test"
140 }
c906108c 141 }
8e28d804
PA
142 }
143}
c906108c 144
8e28d804 145set test "complete 'p '"
c906108c 146send_gdb "p \t"
8e28d804
PA
147gdb_test_multiple "" "$test" {
148 -re "^p \\\x07$" {
149 send_gdb "\n"
150 gdb_test_multiple "" "$test" {
151 -re "The history is empty\\..*$gdb_prompt $" {
152 pass "$test"
153 }
154 }
155 }
156}
c906108c 157
8e28d804 158set test "complete 'info t foo'"
c906108c 159send_gdb "info t foo\t"
8e28d804
PA
160gdb_test_multiple "" "$test" {
161 -re "^info t foo\\\x07$" {
162 send_gdb "\n"
163 gdb_test_multiple "" "$test" {
164 -re "Ambiguous info command \"t foo\": target, tasks, terminal, threads, tp, tracepoints, tvariables, types\\..*$gdb_prompt $" {
165 pass "$test"
166 }
167 }
168 }
169}
c906108c 170
8e28d804 171set test "complete 'info t'"
c906108c 172send_gdb "info t\t"
8e28d804
PA
173gdb_test_multiple "" "$test" {
174 -re "^info t\\\x07$" {
175 send_gdb "\n"
176 gdb_test_multiple "" "$test" {
177 -re "Ambiguous info command \"t\": target, tasks, terminal, threads, tp, tracepoints, tvariables, types\\..*$gdb_prompt $" {
178 pass "$test"
179 }
180 }
181 }
182}
c906108c 183
8e28d804 184set test "complete 'info t '"
c906108c 185send_gdb "info t \t"
8e28d804
PA
186gdb_test_multiple "" "$test" {
187 -re "^info t \\\x07$" {
188 send_gdb "\n"
189 gdb_test_multiple "" "$test" {
190 -re "Ambiguous info command \"t \": target, tasks, terminal, threads, tp, tracepoints, tvariables, types\\..*$gdb_prompt $" {
191 pass "$test"
192 }
193 }
194 }
195}
c906108c 196
8e28d804 197set test "complete 'info asdfgh'"
c906108c 198send_gdb "info asdfgh\t"
8e28d804
PA
199gdb_test_multiple "" "$test" {
200 -re "^info asdfgh\\\x07$" {
201 send_gdb "\n"
202 gdb_test_multiple "" "$test" {
203 -re "Undefined info command: \"asdfgh\". Try \"help info\"\\..*$gdb_prompt $" {
204 pass "$test"
205 }
206 }
207 }
208}
c906108c 209
8e28d804 210set test "complete 'info asdfgh '"
c906108c 211send_gdb "info asdfgh \t"
8e28d804
PA
212gdb_test_multiple "" "$test" {
213 -re "^info asdfgh \\\x07$" {
214 send_gdb "\n"
215 gdb_test_multiple "" "$test" {
216 -re "Undefined info command: \"asdfgh \". Try \"help info\"\\..*$gdb_prompt $" {
217 pass "$test"
218 }
219 }
220 }
221}
c906108c 222
8e28d804 223set test "complete 'info'"
c906108c 224send_gdb "info\t"
8e28d804
PA
225gdb_test_multiple "" "$test" {
226 -re "^info $" {
227 send_gdb "\n"
228 gdb_test_multiple "" "$test" {
229 -re "\"info\" must be followed by the name of an info command\\.\r\nList of info subcommands.*$gdb_prompt $" {
230 pass "$test"
231 }
232 }
233 }
234}
c906108c 235
8e28d804 236set test "complete 'info '"
c906108c 237send_gdb "info \t"
8e28d804
PA
238gdb_test_multiple "" "$test" {
239 -re "^info \\\x07$" {
240 send_gdb "\n"
241 gdb_test_multiple "" "$test" {
242 -re "\"info\" must be followed by the name of an info command\\.\r\nList of info subcommands:\r\n\r\n.*$gdb_prompt $" {
243 pass "$test"
244 }
245 }
246 }
247}
c906108c 248
8e28d804 249set test "complete (2) 'info '"
c906108c 250send_gdb "info \t"
8e28d804
PA
251gdb_test_multiple "" "$test" {
252 -re "^info \\\x07$" {
253 send_gdb "\t"
254 gdb_test_multiple "" "$test" {
255 -re "address.*types.*$gdb_prompt " {
256 send_gdb "\n"
257 gdb_test_multiple "" "$test" {
258 -re "\"info\".*unambiguous\\..*$gdb_prompt $" {
259 pass "$test"
260 }
261 }
262 }
263 }
264 }
265}
c906108c 266
8ffd0459 267set test "complete 'help info wat'"
14032a66 268send_gdb "help info wat\t"
8e28d804
PA
269gdb_test_multiple "" "$test" {
270 -re "^help info watchpoints $" {
271 send_gdb "\n"
272 gdb_test_multiple "" "$test" {
273 -re "Status of specified watchpoints.*\r\n.*$gdb_prompt $" {
274 pass "$test"
275 }
276 }
277 }
278 -re "^help info wat\\\x07$" {
279 fail "$test"
280 }
281}
14032a66 282
8e28d804 283set test "complete 'p \"break1'"
a1dea79a 284send_gdb "p \"break1\t"
8e28d804
PA
285gdb_test_multiple "" "$test" {
286 -re "^p \"break1\\\x07$" {
287 send_gdb "\n"
288 gdb_test_multiple "" "$test" {}
289 }
290 -re "^p \"break1\\.c\"$" {
291 send_gdb "\n"
292 gdb_test_multiple "" "$test" {
8ffd0459 293 -re "$gdb_prompt $" {
8e28d804 294 pass "$test"
9b284272 295 }
8e28d804
PA
296 }
297 }
298}
9b284272
DJ
299
300setup_xfail "*-*-*"
8e28d804 301set test "complete 'p \"break1.'"
a1dea79a 302send_gdb "p \"break1.\t"
8e28d804
PA
303gdb_test_multiple "" "$test" {
304 -re "^p \"break1\\.\\\x07$" {
305 send_gdb "\n"
306 gdb_test_multiple "" "$test" {}
307 }
308 -re "^p \"break1\\.c\"$" {
309 send_gdb "\n"
310 gdb_test_multiple "" "$test" {
8ffd0459 311 -re "$gdb_prompt $" {
8e28d804 312 pass "$test"
9b284272 313 }
8e28d804
PA
314 }
315 }
316 -re "^p \"break1\\..*$" {
317 send_gdb "\n"
318 gdb_test_multiple "" "$test" {}
319 }
320}
c906108c 321
8ffd0459 322set test "complete 'p 'arg'"
5ac01682 323send_gdb "p 'arg\t"
8e28d804
PA
324gdb_test_multiple "" "$test" {
325 -re "^p 'arg\\\x07$" {
326 send_gdb "\n"
327 gdb_test_multiple "" "$test" {
328 -re "(Invalid character constant\\.|Unmatched single quote\\.).*$gdb_prompt $" {
329 pass "$test"
330 }
331 }
332 }
333}
c906108c 334
8ffd0459 335set test "complete (2) 'p 'arg'"
5ac01682 336send_gdb "p 'arg\t"
8e28d804 337gdb_test_multiple "" "$test" {
5ac01682 338 -re "^p 'arg\\\x07$" {
085dd6e6 339 send_gdb "\t"
8e28d804 340 gdb_test_multiple "" "$test" {
8ffd0459 341 -re "argv.*$gdb_prompt " {
085dd6e6 342 send_gdb "\n"
8e28d804 343 gdb_test_multiple "" "$test" {
f617d2b6 344 -re "(Invalid character constant\\.|Unmatched single quote\\.).*$gdb_prompt $" {
8e28d804 345 pass "$test"
085dd6e6 346 }
085dd6e6
JM
347 }
348 }
349 -re "(There are $decimal possibilities\\. Do you really\r\nwish to see them all.|Display all $decimal possibilities.) \\(y or n\\)$" {
350 send_gdb "n"
8e28d804 351 gdb_test_multiple "" "$test" {
5ac01682 352 -re "\\(gdb\\) p 'arg$" {
085dd6e6 353 send_gdb "\n"
8e28d804 354 gdb_test_multiple "" "$test" {
f617d2b6 355 -re "(Invalid character constant\\.|Unmatched single quote\\.).*$gdb_prompt $" {
8e28d804 356 pass "$test"
085dd6e6 357 }
085dd6e6
JM
358 }
359 }
085dd6e6
JM
360 }
361 }
085dd6e6
JM
362 }
363 }
085dd6e6 364}
c906108c 365
de0bea00
MF
366set test "complete 'handle signal'"
367send_gdb "handle sigq\t"
368gdb_test_multiple "" "$test" {
369 -re "^handle sigq\b\b\b\bSIGQUIT $" {
370 send_gdb "\n"
371 gdb_test_multiple "" "$test" {
372 -re "SIGQUIT.*Quit.*$gdb_prompt $" {
373 pass "$test"
374 }
375 }
376 }
377}
378
379set test "complete 'handle keyword'"
380send_gdb "handle nos\t"
381gdb_test_multiple "" "$test" {
382 -re "^handle nostop $" {
383 send_gdb "\n"
384 gdb_test_multiple "" "$test" {
385 -re "$gdb_prompt $" {
386 pass "$test"
387 }
388 }
389 }
390}
391
c906108c 392
6970b5b1
JB
393# These tests used to try completing the shorter "p b-a".
394# Unfortunately, on some systems, there are .o files in system
395# libraries which declare static variables named `b'. Of course,
396# those variables aren't really in scope, as far as the compiler is
397# concerned. But GDB deliberately tries to be more liberal: if you
398# enter an identifier that doesn't have any binding in scope, GDB will
399# search all the program's compilation units for a static variable of
400# the given name.
401#
402# This behavior can help avoid a lot of pedantry, so it's usually a
403# good thing. But in this test case, it causes GDB to print the value
404# of some random variable, instead of giving us the "No symbol..."
405# error we were expecting.
406#
407# For example, on S/390 linux, the file s_atan.c in libm.a declares a
408# `b', which is a structure containing an int and a float, so GDB says
409# ``Argument to arithmetic operation not a number or boolean'' instead
410# of ``No symbol ...''.
411#
412# So, I'm hoping that there is no system with a static library variable named
413# `no_var_by_this_name'.
8e28d804
PA
414
415set test "complete 'p no_var_named_this-arg'"
5ac01682 416send_gdb "p no_var_named_this-arg\t"
8e28d804 417gdb_test_multiple "" "$test" {
5ac01682 418 -re "^p no_var_named_this-arg\\\x07$" {
2d842f13 419 send_gdb "\n"
8e28d804 420 gdb_test_multiple "" "$test" {
6970b5b1 421 -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
8e28d804 422 pass "$test"
c906108c 423 }
c906108c 424 }
2d842f13 425 }
2d842f13 426}
c906108c 427
8e28d804 428set test "complete (2) 'p no_var_named_this-arg'"
5ac01682 429send_gdb "p no_var_named_this-arg\t"
8e28d804 430gdb_test_multiple "" "$test" {
5ac01682 431 -re "^p no_var_named_this-arg\\\x07$" {
085dd6e6 432 send_gdb "\t"
8e28d804 433 gdb_test_multiple "" "$test" {
8ffd0459 434 -re "argv.*$gdb_prompt " {
085dd6e6 435 send_gdb "\n"
8e28d804 436 gdb_test_multiple "" "$test" {
6970b5b1 437 -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
8e28d804 438 pass "$test"
085dd6e6 439 }
085dd6e6
JM
440 }
441 }
442 -re "(There are $decimal possibilities\\. Do you really\r\nwish to see them all.|Display all $decimal possibilities.) \\(y or n\\)$" {
c4cbc0df
PA
443 send_gdb "n\n"
444
445 # Eat the prompt
085dd6e6 446 gdb_expect {
c4cbc0df 447 -re "$gdb_prompt " {
8e28d804
PA
448 pass "$test (eat prompt)"
449 }
450 timeout {
451 fail "(timeout) $test (eat prompt)"
c4cbc0df 452 }
c4cbc0df
PA
453 }
454
8e28d804 455 gdb_test_multiple "" "$test" {
c4cbc0df 456 -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
8e28d804 457 pass "$test"
c4cbc0df 458 }
085dd6e6
JM
459 }
460 }
c906108c 461 }
085dd6e6 462 }
085dd6e6 463}
c906108c 464
8e28d804 465set test "complete (2) 'p no_var_named_this-'"
6970b5b1 466send_gdb "p no_var_named_this-\t"
8e28d804 467gdb_test_multiple "" "$test" {
6970b5b1 468 -re "^p no_var_named_this-\\\x07$" {
085dd6e6 469 send_gdb "\t"
8e28d804 470 gdb_test_multiple "" "$test" {
085dd6e6 471 -re "(There are $decimal possibilities\\. Do you really\r\nwish to see them all.|Display all $decimal possibilities.) \\(y or n\\)$" {
c4cbc0df
PA
472 send_gdb "n\n"
473
474 # Eat the prompt
085dd6e6 475 gdb_expect {
c4cbc0df 476 -re "$gdb_prompt " {
8e28d804
PA
477 pass "$test (eat prompt)"
478 }
479 timeout {
480 fail "(timeout) $test (eat prompt)"
c4cbc0df 481 }
c4cbc0df
PA
482 }
483
8e28d804 484 gdb_test_multiple "" "$test" {
c4cbc0df 485 -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
8e28d804 486 pass "$test"
c4cbc0df 487 }
085dd6e6
JM
488 }
489 }
8ffd0459 490 -re "argv.*$gdb_prompt $" {
5ac01682 491 send_gdb "\n"
8e28d804 492 gdb_test_multiple "" "$test" {
5ac01682 493 -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
8e28d804 494 pass "$test"
5ac01682
DJ
495 }
496 }
497 }
085dd6e6
JM
498 }
499 }
085dd6e6 500}
c906108c 501
8e28d804 502set test "complete 'p values\[0\].a'"
65d12d83 503send_gdb "p values\[0\].a\t"
8e28d804
PA
504gdb_test_multiple "" "$test" {
505 -re "^p values.0..a_field $" {
506 send_gdb "\n"
507 gdb_test_multiple "" "$test" {
8ffd0459 508 -re " = 0.*$gdb_prompt $" {
8e28d804
PA
509 pass "$test"
510 }
511 }
512 }
513}
0eba65ab 514
8e28d804 515set test "complete 'p values\[0\] . a'"
37cd5d19 516send_gdb "p values\[0\] . a\t"
8e28d804
PA
517gdb_test_multiple "" "$test" {
518 -re "^p values.0. . a_field $" {
519 send_gdb "\n"
520 gdb_test_multiple "" "$test" {
8ffd0459 521 -re " = 0.*$gdb_prompt $" {
8e28d804
PA
522 pass "$test"
523 }
524 }
525 }
526}
37cd5d19 527
8e28d804 528set test "complete 'p &values\[0\] -> a'"
37cd5d19 529send_gdb "p &values\[0\] -> a\t"
8e28d804
PA
530gdb_test_multiple "" "$test" {
531 -re "^p &values.0. -> a_field $" {
532 send_gdb "\n"
533 gdb_test_multiple "" "$test" {
8ffd0459 534 -re " = .*0x\[0-9a-fA-F\]*.*$gdb_prompt $" {
8e28d804
PA
535 pass "$test"
536 }
537 }
538 }
539}
37cd5d19 540
9ae8282d
TT
541gdb_test "complete p &values\[0\]->z" \
542 "p &values.0.->z_field" \
8e28d804 543 "completion of field in anonymous union"
9ae8282d 544
1a371f2e 545# The following tests used to simply try to complete `${objdir}/file',
0eba65ab
JB
546# and so on. The problem is that ${objdir} can be very long; the
547# completed filename may be more than eighty characters wide. When
548# this happens, readline tries to manage things, producing output that
549# may make sense on the screen, but is rather hard for our script to
550# recognize.
551#
552# In the case that motivated this change, the (gdb) prompt occupied
1a371f2e 553# the leftmost six columns, and `${objdir}/' was seventy-four
0eba65ab
JB
554# characters long --- eighty in all. After printing the slash,
555# readline emitted a space, a carriage return, and then `Makefile'
556# (the tab character being received as input after `Make'.
557#
558# Basically, you have to let readline do whatever it's going to do to
559# make the screen look right. If it happens to use a different
560# strategy on Tuesdays to get the cursor in the right place, that's
561# not something the testsuite should care about.
562#
563# So, we avoid long lines. We `cd' to ${objdir} first, and then do
564# the completion relative to the current directory.
c906108c 565
37ab3bf8
DJ
566# ${srcdir} may be a relative path. We want to make sure we end up
567# in the right directory - so make sure we know where it is.
568set mydir [pwd]
569cd ${srcdir}
570set fullsrcdir [pwd]
571cd ${mydir}
572
68ab8fc5
EZ
573# If the directory name contains a '+' we must escape it, adding a backslash.
574# If not, the test below will fail because it will interpret the '+' as a
575# regexp operator. We use string_to_regexp for this purpose.
576
577gdb_test "cd ${fullsrcdir}" \
578 "Working directory [string_to_regexp ${fullsrcdir}].*" \
579 "cd to \${srcdir}"
580
cc1d7add 581
40974f91 582# GDB used to fail adding / on directories, on the first try only.
fdc498b8 583set uniquedir ../testsuite/gdb.base/comp-dir
40974f91
JK
584set escapeduniquedir [string_to_regexp ${uniquedir}]
585set uniquesu subdi
586set uniquesub ${uniquesu}r
587set escapeuniquesub [string_to_regexp ${uniquesub}]
40974f91 588send_gdb "dir ${uniquedir}\t"
cc1d7add 589gdb_expect {
40974f91 590 -re "${escapeduniquedir}/" {
cc1d7add 591 pass "directory completion"
40974f91 592 send_gdb "${uniquesu}\t"
cc1d7add 593 }
40974f91 594 -re "${escapeduniquedir} $" {
cc1d7add 595 fail "directory completion (old gdb bug)"
40974f91 596 send_gdb "\b/${uniquesu}\t"
cc1d7add
PM
597 }
598 default {
599 fail "directory completion (timeout)"
40974f91 600 send_gdb "\ndir ${uniquedir}/${uniquesu}\t"
cc1d7add
PM
601 }
602}
603
604gdb_expect {
40974f91 605 -re "${escapeuniquesub}/$" {
cc1d7add
PM
606 pass "directory completion 2"
607 }
608 timeout {
609 fail "directory completion 2"
610 }
611}
612
40974f91
JK
613# Empty COMMAND sends no newline while " " sends the newline we need.
614gdb_test " " "Source directories searched: .*" "Glob remaining of directory test"
cc1d7add 615
8e28d804
PA
616gdb_test "complete file ./gdb.base/compl" \
617 "file ./gdb.base/completion\\.exp.*" \
618 "complete-command 'file ./gdb.base/compl'"
cc1d7add 619
8e28d804 620set test "complete 'file ./gdb.base/complet'"
f1c2644b 621send_gdb "file ./gdb.base/complet\t"
8e28d804
PA
622gdb_test_multiple "" "$test" {
623 -re "^file ./gdb.base/completion\\.exp $" {
624 send_gdb "\n"
625 # Ignore the exact error message.
626 gdb_test_multiple "" "complete 'file ./gdb.base/complet'" {
627 -re "\r\nA program is being debugged already\\.\[\r\n\]+Are you sure you want to change the file\\? \\(y or n\\) $" {
628 send_gdb "n\n"
629 exp_continue
630 }
8ffd0459 631 -re "$gdb_prompt $" {
8e28d804
PA
632 pass "$test"
633 }
634 }
635 }
636}
c906108c 637
8e28d804 638set test "complete 'info func marke'"
3fe60e3c 639send_gdb "info func marke\t"
8e28d804
PA
640gdb_test_multiple "" "$test" {
641 -re "^info func marke.*r$" {
642 send_gdb "\t\t"
643 gdb_test_multiple "" "$test" {
644 -re "marker1.*$gdb_prompt " {
645 send_gdb "\n"
646 gdb_test_multiple "" "$test" {
647 -re "All functions matching regular expression \"marker\":.*File.*break1.c:\r\nint marker1\\((void|)\\);\r\nint marker2\\(int\\).*marker3\\(char.*char.*\\).*marker4\\(long( int)?\\);.*$gdb_prompt $" {
648 pass "$test"
649 }
650 }
651 }
652 }
653 }
654}
c906108c
SS
655
656
8e28d804 657set test "complete 'set follow-fork-mode'"
c906108c 658send_gdb "set follow-fork-mode \t\t"
8e28d804
PA
659gdb_test_multiple "" "$test" {
660 -re "child.*parent.*$gdb_prompt " {
661 send_gdb "\n"
662 gdb_test_multiple "" "$test" {
663 -re "Requires an argument.*child.*parent.*$gdb_prompt $" {
664 pass "$test"
665 }
666 -re "Ambiguous item \"\"\\..*$gdb_prompt $" {
667 pass "$test"
668 }
669 }
670 }
671}
c906108c 672
c92817ce
TT
673gdb_test_no_output "complete print values\[0\].x." \
674 "field completion with invalid field"
6f4de6c9 675
3f172e24
TT
676# If there is a non-deprecated completion, it should be returned.
677gdb_test "complete sav" "save" "test non-deprecated completion"
678# If there is only a deprecated completion, then it should be returned.
679gdb_test "complete save-t" "save-tracepoints" "test deprecated completion"
680
681
5ea2a32c 682# Restore globals modified in this test...
c906108c 683set timeout $oldtimeout1
c906108c 684
5ea2a32c 685return 0
This page took 1.958047 seconds and 4 git commands to generate.