import gdb-1999-06-28 snapshot
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / default.exp
CommitLineData
c906108c
SS
1# Copyright (C) 1988, 1990, 1991, 1992, 1994, 1997, 1998
2# Free Software Foundation, Inc.
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
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
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.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18# Please email any bugs, comments, and/or additions to this file to:
19# bug-gdb@prep.ai.mit.edu
20
21# Start with a fresh gdb
22
23gdb_exit
24gdb_start
25
26set timeout 60
27
28#
29# test default actions of gdb commands
30#
31
32#load_lib gdb.exp
33
34gdb_test "add-symbol-file" "add-symbol-file takes a file name and an address" "add-symbol-file"
35
36setup_xfail "mips-idt-*"
37send_gdb "attach\n"
38gdb_expect {
39 -re "Argument required .(process-id|program) to attach.*$gdb_prompt $"\
40 { pass "attach" }
41 -re "You can't do that when your target is `None'.*$gdb_prompt $"\
42 { pass "attach" }
7a292a7a
SS
43 -re "You can't do that without a process to debug.*$gdb_prompt $"\
44 { pass "attach" }
c906108c
SS
45 -re "Don't know how to attach. Try \"help target\"..*$gdb_prompt $"\
46 { pass "attach" }
47 -re "Kill it. .y or n." {
48 send_gdb "y\n"
49 exp_continue
50 }
51 -re "$gdb_prompt $" { fail "attach" }
52 timeout { fail "(timeout) attach" }
53}
54
55# FIXME: attach kills the udi connection
56if { [istarget "a29k-*-udi"] } {
57 gdb_exit
58 gdb_start
59}
60
61if ![target_info exists use_gdb_stub] {
62 gdb_test "break" "No default breakpoint address now." "break"
63 foreach i "b br bre brea" {
64 gdb_test $i "No default breakpoint address now." "break \"$i\" abbreviation"
65 }
66
67
68 setup_xfail "mips-idt-*" "a29k-*-udi"
69 gdb_test "backtrace" "No stack."
085dd6e6
JM
70
71 # ba and bac are no longer unique command prefixes. So these tests
72 # elict an error from GDB.
73 # GDB needs to be fixed to map unique alias here for ba bac.
74 #
c906108c
SS
75 foreach i "bt ba bac" {
76 setup_xfail "mips-idt-*" "a29k-*-udi"
77 gdb_test $i "No stack." "backtrace \"$i\" abbreviation"
78 }
79} else {
80 warning "Skipping backtrace and break tests because of GDB stub."
81}
82
83# This works on the MIPS IDT board, but confuses future tests.
84if ![istarget "mips-idt-*"] then {
85 setup_xfail "a29k-*-udi"
86 gdb_test "continue" "The program is not being run." "continue"
87 setup_xfail "a29k-*-udi"
88 gdb_test "c" "The program is not being run." "continue \"c\" abbreviation"
89}
90
91# FIXME: continue kills the udi connection
92if [istarget "a29k-*-udi"] then {
93 gdb_exit
94 gdb_start
95}
96
97#test call
98gdb_test "call" "The history is empty..*" "call"
99
100
101#test catch
102gdb_test "catch" "Catch requires an event name..*" "catch"
103
104#test cd
105gdb_test "cd" "Argument required .new working directory.*" "cd"
106
107#test clear
108gdb_test "clear" "No source file specified..*" "clear"
109
110#test commands
111gdb_test "commands" "No breakpoint number 0..*" "commands"
112
113#test condition
114gdb_test "condition" "Argument required .breakpoint number.*" "condition"
115
116#test core-file
117gdb_test "core-file" "No core file now.|GDB can't read core files on this machine." "core-file"
118#test delete "d" abbreviation
119gdb_test "d" "" "delete \"d\" abbreviation"
120#test delete
121gdb_test "delete" "" "delete"
122#test define
123gdb_test "define" "Argument required \[(\]name of command to define\[)\]." "define"
124#test delete breakpoints
125gdb_test "delete breakpoints" "" "delete breakpoints"
126#test delete display
127# FIXME -- need to dump full output to detailed log
128send_gdb "delete display\n"
129gdb_expect {
130 -re "Delete all auto-display expressions.*y or n. $" {
131 send_gdb "y\n"
132 gdb_expect {
133 -re "$gdb_prompt $" { pass "delete display prompt" }
134 timeout { fail "(timeout) delete display prompt" }
135 }
136 }
137 timeout { fail "(timeout) delete display prompt" }
138
139}
140
141#test detach
142gdb_test "detach" "" "detach"
143
144# FIXME: continue kills the udi connection
145if [istarget "a29k-*-udi"] then {
146 gdb_exit
147 gdb_start
148}
149if [istarget "h8300-*-hms"] then {
150 gdb_exit
151 gdb_start
152}
153
154#test directory
155# FIXME -- need to dump full output to detailed log
156
157send_gdb "directory\n"
158gdb_expect {
159 -re "Reinitialize source path to empty.*y or n. $" {
160 send_gdb "y\n"
161 gdb_expect {
162 -re "Source directories searched: .cdir:.cwd.*$gdb_prompt $"\
163 { pass "directory prompt" }
164 timeout { fail "(timeout) directory prompt" }
165 }
166 }
167}
168
169#test disable "dis" abbreviation
170gdb_test "dis" "" "disable \"dis\" abbreviation"
171#test disable "disa" abbreviation
172gdb_test "disa" "" "disable \"disa\" abbreviation"
173#test disable
174gdb_test "disable" "" "disable"
175#test disable breakpoints
176gdb_test "disable breakpoints" "" "disable breakpoints"
177#test disable display
178gdb_test "disable display" "" "disable display"
179#test disassemble
180gdb_test "disassemble" "No frame selected." "disassemble"
181#test display
182gdb_test "display" "" "display"
183#test do
184gdb_test "do" "No stack." "do"
185#test document
186gdb_test "document" "Argument required .name of command to define.*" "document"
187#test down
188gdb_test "down" "No stack.*" "down"
189#test down-silently
190gdb_test "down-silently" "No stack." "down-silently"
191#test echo
192gdb_test "echo" "" "echo"
193#test enable breakpoints delete
194gdb_test "enable breakpoints delete" "Argument required .one or more breakpoint numbers.*" "enable breakpoints delete"
195#test enable breakpoints once
196gdb_test "enable breakpoints once" "Argument required .one or more breakpoint numbers.*" "enable breakpoints once"
197#test enable breakpoints
198gdb_test "enable breakpoints" "" "enable breakpoints"
199#test enable delete
200gdb_test "enable delete" "Argument required .one or more breakpoint numbers.*" "enable delete"
201#test enable display
202gdb_test "enable display" "" "enable display"
203#test enable once
204gdb_test "enable once" "Argument required .one or more breakpoint numbers.*" "enable once"
205#test enable
206gdb_test "enable" "" "enable"
207#test exec-file
208send_gdb "exec-file\n"
209gdb_expect {
210 -re "No executable file now..*$gdb_prompt $" {
211 pass "exec-file"
212 }
213 -re "exec-file.*A program is being debugged already. Kill it. .y or n.*$" {
214 send_gdb "n\n"
215 if $verbose>1 then {
216 send_user "\tDidn't kill program being debugged\n"
217 }
218 gdb_expect -re "$gdb_prompt $" { }
219 pass "exec-file"
220 }
221 -re "$gdb_prompt $" { fail "exec-file" }
222 timeout { fail "(timeout) exec-file" }
223}
224
225#test frame "f" abbreviation
226setup_xfail "a29k-*-udi"
227gdb_test "f" "No stack." "frame \"f\" abbreviation"
228#test frame
229setup_xfail "a29k-*-udi"
230gdb_test "frame" "No stack." "frame"
231#test fg
232setup_xfail "a29k-*-udi"
233gdb_test "fg" "The program is not being run." "fg"
234# FIXME: fg kills the udi connection
235#test file
236send_gdb "file\n"
237gdb_expect {
238 -re "No executable file now..*$gdb_prompt $"\
239 { pass "file" }
240 -re ".*A program is being debugged already. Kill it. .y or n.*$" {
241 send_gdb "n\n"
242 if $verbose>1 then {
243 send_user "\t\tDidn't kill program being debugged\n"
244 }
245 gdb_expect -re "$gdb_prompt $" { }
246 pass "file"
247 }
248 -re ".*$gdb_prompt $" { fail "file" }
249 timeout { fail "(timeout) file" }
250}
251
252#test finish
253setup_xfail "a29k-*-udi"
254gdb_test "finish" "The program is not running." "finish"
255#test forward-search
256# The message here comes from the regexp library, not gdb, and so can
257# vary on different systems.
258gdb_test "forward-search" "No previous regular expression.*|There is no previous regular expression.*" "forward-search"
259#test help "h" abbreviation
260gdb_test "h" "List of classes of commands:.*\[\r\n\]+aliases -- Aliases of other commands.*\[\r\n\]+breakpoints -- Making program stop at certain points.*\[\r\n\]+data -- Examining data.*\[\r\n\]+files -- Specifying and examining files.*\[\r\n\]+obscure -- Obscure features.*\[\r\n\]+running -- Running the program.*\[\r\n\]+stack -- Examining the stack.*\[\r\n\]+status -- Status inquiries.*\[\r\n\]+support -- Support facilities.*\[\r\n\]+user-defined -- User-defined commands.*\[\r\n\]+Type \"help\" followed by a class name for a list of commands in that class..*\[\r\n\]+Type \"help\" followed by command name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "help \"h\" abbreviation"
261#test help
262gdb_test "help" "List of classes of commands:.*\[\r\n\]+aliases -- Aliases of other commands.*\[\r\n\]+breakpoints -- Making program stop at certain points.*\[\r\n\]+data -- Examining data.*\[\r\n\]+files -- Specifying and examining files.*\[\r\n\]+obscure -- Obscure features.*\[\r\n\]+running -- Running the program.*\[\r\n\]+stack -- Examining the stack.*\[\r\n\]+status -- Status inquiries.*\[\r\n\]+support -- Support facilities.*\[\r\n\]+user-defined -- User-defined commands.*\[\r\n\]+Type \"help\" followed by a class name for a list of commands in that class..*\[\r\n\]+Type \"help\" followed by command name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "help"
263#test handle
264gdb_test "handle" "Argument required .signal to handle.*" "handle"
265#test info "i" abbreviation
266gdb_test "i" "\"info\" must be followed by the name of an info command..*\[\r\n\]+List of info subcommands:.*\[\r\n\]+Type \"help info\" followed by info subcommand name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "info \"i\" abbreviation"
267#test info
268gdb_test "info" "\"info\" must be followed by the name of an info command..*\[\r\n\]+List of info subcommands:.*\[\r\n\]+Type \"help info\" followed by info subcommand name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "info"
269#test ignore
270gdb_test "ignore" "Argument required .a breakpoint number.*" "ignore"
271#test info address
272gdb_test "info address" "Argument required." "info address"
273#test info all-registers
274setup_xfail "a29k-*-udi"
275gdb_test "info all-registers" "The program has no registers now." "info all-registers"
276#test info args
277gdb_test "info args" "No frame selected." "info args"
278#test info bogus-gdb-command
279gdb_test "info bogus-gdb-command" "Undefined info command: \"bogus-gdb-command\". Try \"help info\".*" "info bogus-gdb-command"
280#test info breakpoints
281gdb_test "info breakpoints" "No breakpoints or watchpoints." "info breakpoints"
282#test info catch
283gdb_test "info catch" "You can't do that without a process to debug." "info catch"
284#test info copying
285# FIXME -- doesn't work worth a shit
286#send_gdb "info copying"
287# -re "GNU GENERAL PUBLIC LICENSE.*#of preserving the free status of all derivatives of our free software and.*#of promoting the sharing and reuse of software generally."#
288gdb_test "info copying"
289# }
290#
291#
292#test info display
293gdb_test "info display" "There are no auto-display expressions now." "info display"
294#test info frame "f" abbreviation
295gdb_test "info f" "No stack.*|No selected frame.*" "info frame \"f\" abbreviation"
296#test info frame
297gdb_test "info frame" "No stack.|No selected frame." "info frame"
298#test info files
299gdb_test "info files" "" "info files"
300#test info float
301if [istarget "arm-*-*"] then {
302 gdb_test "info float" "Software FPU type.*mask:.*flags:.*" "info float"
303} elseif [istarget "thumb-*-*"] then {
304 gdb_test "info float" "Software FPU type.*mask:.*flags:.*" "info float"
7a292a7a
SS
305} elseif [istarget "strongarm-*-*"] then {
306 gdb_test "info float" "Software FPU type.*mask:.*flags:.*" "info float"
c906108c
SS
307} else {
308 gdb_test "info float" "No floating point info available for this processor." "info float"
309}
310#test info functions
311gdb_test "info functions" "All defined functions:" "info functions"
312#test info locals
313gdb_test "info locals" "No frame selected." "info locals"
314#test info program
315setup_xfail "a29k-*-udi"
316gdb_test "info program" "The program being debugged is not being run." "info program"
317#test info registers
318setup_xfail "a29k-*-udi"
319gdb_test "info registers" "The program has no registers now." "info registers"
320#test info stack "s" abbreviation
321setup_xfail "a29k-*-udi"
322gdb_test "info s" "No stack." "info stack \"s\" abbreviation"
323#test info stack
324setup_xfail "a29k-*-udi"
325gdb_test "info stack" "No stack." "info stack"
326#test info set
327# FIXME -- needs to match the entire output
328gdb_test "info set" "confirm: Whether to confirm potentially dangerous operations is o\[a-z\]*..*\[\r\n\]+history filename: The filename in which to record the command history is .*\[\r\n\]+listsize: Number of source lines gdb will list by default is 10.*" "info set"
329gdb_test "info symbol" "Argument required .address.."
330#test info source
331gdb_test "info source" "No current source file..*" "info source"
332#test info sources
333gdb_test "info sources" "No symbol table is loaded. Use the \"file\" command.*" "info sources"
334#test info target
335gdb_test "info target" "" "info target"
336#test info terminal
337gdb_test "info terminal" "No saved terminal information." "info terminal"
338#test info types
339gdb_test "info types" "All defined types:" "info types"
340#test info variables
341gdb_test "info variables" "All defined variables:" "info variables"
342#test info warranty
085dd6e6 343setup_xfail "hppa*-hp-hpux*"
c906108c
SS
344gdb_test "info warranty" "NO WARRANTY.*\[\r\n\]+ *11. *BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY.*\[\r\n\]+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN.*\[\r\n\]+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES.*\[\r\n\]+PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED.*\[\r\n\]+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF.*\[\r\n\]+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS.*\[\r\n\]+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE.*\[\r\n\]+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,.*\[\r\n\]+REPAIR OR CORRECTION..*\[\r\n\]+ *12. *IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING.*\[\r\n\]+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR.*\[\r\n\]+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,.*\[\r\n\]+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING.*\[\r\n\]+OUT OF THE USE OR INABILITY TO USE THE PROGRAM .INCLUDING BUT NOT LIMITED.*\[\r\n\]+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY.*\[\r\n\]+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER.*\[\r\n\]+PROGRAMS., EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE.*\[\r\n\]+POSSIBILITY OF SUCH DAMAGES.*" "info warranty"
345#test info watchpoints
346gdb_test "info watchpoints" "No breakpoints or watchpoints." "info watchpoints"
347#test inspect
348gdb_test "inspect" "The history is empty." "inspect"
349#test jump
350setup_xfail "a29k-*-udi"
351gdb_test "jump" "The program is not being run." "jump"
352#test kill
353gdb_test "kill" "The program is not being run." "kill"
354#test list "l" abbreviation
355gdb_test "l" "No symbol table is loaded. Use the \"file\" command.*" "list \"l\" abbreviation"
356#test list
357gdb_test "list" "No symbol table is loaded. Use the \"file\" command.*" "list"
358#test load
359# The ``takes a file name'' case is for vxgdb.
360# The ``Use the "file" command'' case is for newer GDB versions which try
361# to deduce the filename from the exec file.
362gdb_test "load" "You can't do that when your target is `None'.*|The load command takes a file name.*|Must specify at least a file name with the load command.*|.*Use the .file. or .exec-file. command.*" "load"
363#test next "n" abbreviation
364setup_xfail "a29k-*-udi"
365gdb_test "n" "The program is not being run." "next \"n\" abbreviation"
366#test next
367setup_xfail "a29k-*-udi"
368gdb_test "next" "The program is not being run." "next"
369#test nexti "ni" abbreviation
370setup_xfail "a29k-*-udi"
371gdb_test "ni" "The program is not being run." "nexti \"ni\" abbreviation"
372#test nexti
373setup_xfail "a29k-*-udi"
374gdb_test "nexti" "The program is not being run." "nexti"
375#test output
376gdb_test "output" "Argument required .expression to compute.*" "output"
377
378#test overlay
379gdb_test "overlay" "\"overlay\" must be followed by the name of .*"
380#test a non-existant overlay subcommand
381gdb_test "overlay on" "Undefined overlay command.* Try \"help overlay\"."
382gdb_test "overlay manual" "" "overlay manual #1"
383gdb_test "overlay auto" ""
384gdb_test "overlay off" ""
385gdb_test "overlay list" "No sections are mapped."
386gdb_test "overlay map" "Overlay debugging not enabled.*" "overlay map #1"
387gdb_test "overlay unmap" "Overlay debugging not enabled.*" "overlay unmap #2"
388gdb_test "overlay manual" "" "overlay manual #2"
389gdb_test "overlay map" "Argument required: name of an overlay section." "overlay map #2"
390gdb_test "overlay unmap" "Argument required: name of an overlay section." "overlay unmap #2"
391
392#test print "p" abbreviation
393gdb_test "p" "The history is empty." "print \"p\" abbreviation"
394#test print
395gdb_test "print" "The history is empty." "print"
396#test printf
397gdb_test "printf" "Argument required .format-control string and values to print.*" "printf"
398#test ptype
399gdb_test "ptype" "The history is empty." "ptype"
400#test pwd
401gdb_test "pwd" "Working directory .*" "pwd"
402
403#test run "r" abbreviation
404if [istarget "*-*-vxworks*"] then {
405 gdb_test "set args" "" ""
406
407 gdb_test "r" "Starting program: .*
408You must specify a function name to run, and arguments if any"\
409 "run \"r\" abbreviation"
410 gdb_test "set args main" "" ""
411
412} else {
413 send_gdb "r\n"
414 gdb_expect {
415 -re "Starting program: .*
416You can't do that when your target is `None'.*$gdb_prompt $"\
417 { pass "run \"r\" abbreviation" }
418 -re "Starting program: .*
419No executable file specified.*
420Use the \"file\" or \"exec-file\" command.*$gdb_prompt $"\
421 { pass "run \"r\" abbreviation" }
422 -re "Starting program: .*
423No image loaded into target.*$gdb_prompt $"\
424 { pass "run \"r\" abbreviation" }
425 -re "Starting program: .*
426No program loaded.*$gdb_prompt $"\
427 { pass "run \"r\" abbreviation" }
428 -re "Don't know how to run. Try \"help target\"..*$gdb_prompt $"\
429 { pass "run \"r\" abbreviation" }
430 -re ".*$gdb_prompt $" { fail "run \"r\" abbreviation" }
431 timeout { fail "(timeout) run \"r\" abbreviation" }
432 }
433}
434
435#test run
436if [istarget "*-*-vxworks*"] then {
437 gdb_test "set args" "" ""
438
439 gdb_test "run" "Starting program: .*
440You must specify a function name to run, and arguments if any"
441 gdb_test "set args main" "" ""
442
443} else {
444 send_gdb "run\n"
445 gdb_expect {
446 -re "Starting program:.*You can't do that when your target is `None'.*$gdb_prompt $" { pass "run" }
447 -re "Starting program: .*
448No executable file specified.*
449Use the \"file\" or \"exec-file\" command.*$gdb_prompt $"\
450 { pass "run" }
451 -re "Starting program: .*
452No image loaded into target.*$gdb_prompt $"\
453 { pass "run" }
454 -re "Starting program: .*
455No program loaded.*$gdb_prompt $"\
456 { pass "run \"r\" abbreviation" }
457 -re "Don't know how to run. Try \"help target\"..*$gdb_prompt $"\
458 { pass "run" }
459 -re ".*$gdb_prompt $" { fail "run" }
460 timeout { fail "(timeout) run" }
461 }
462}
463
464#test rbreak
465gdb_test "rbreak" "" "rbreak"
466
467#test return
468# The middle case accommodates the a29k, where doing the "ni" above causes
469# an initial stack to be created.
470gdb_test "return" "No selected frame..*" "return" "Make .* return now.*y or n. $" "y"
471
472
473#test reverse-search
474gdb_test "reverse-search" "No previous regular expression.*|There is no previous regular expression.*" "reverse-search"
475#test step "s" abbreviation
476setup_xfail "a29k-*-udi"
477gdb_test "s" "The program is not being run." "step \"s\" abbreviation #1"
478#test step
479setup_xfail "a29k-*-udi"
480gdb_test "step" "The program is not being run." "step #1"
481#test search
482gdb_test "search" "No previous regular expression.*|There is no previous regular expression.*" "search"
483#test section
484gdb_test "section" "Must specify section name and its virtual address.*" "section"
485#test set annotate
486gdb_test "set annotate" "Argument required .integer to set it to.*" "set annotate"
487#test set args
488gdb_test "set args" "" "set args"
489#test set check "c" abbreviation
490gdb_test "set c" "\"set check\" must be followed by the name of a check subcommand..*\[\r\n\]+List of set check subcommands:.*\[\r\n\]+set check range -- Set range checking.*\[\r\n\]+set check type -- Set type checking.*\[\r\n\]+Type \"help set check\" followed by set check subcommand name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "set check \"c\" abbreviation"
491#test set check "ch" abbreviation
492gdb_test "set ch" "\"set check\" must be followed by the name of a check subcommand..*\[\r\n\]+List of set check subcommands:.*\[\r\n\]+set check range -- Set range checking.*\[\r\n\]+set check type -- Set type checking.*\[\r\n\]+Type \"help set check\" followed by set check subcommand name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "set check \"ch\" abbreviation"
493#test set check
494gdb_test "set check" "\"set check\" must be followed by the name of a check subcommand..*\[\r\n\]+List of set check subcommands:.*\[\r\n\]+set check range -- Set range checking.*\[\r\n\]+set check type -- Set type checking.*\[\r\n\]+Type \"help set check\" followed by set check subcommand name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "set check"
495#test set check range
496gdb_test "set check range" "" "set check range"
497#test set check type
498gdb_test "set check type" "" "set check type"
499#test set complaints
500gdb_test "set complaints" "Argument required .integer to set it to.*" "set complaints"
501#test set confirm
502gdb_test "set confirm" "" "set confirm"
503# Don't test set editing. What if we're talking to a gdb that
504# won't do editing correctly while we're talking to it?
505# gdb_test "set editing" "" "set editing"
506
507#test set environment
508gdb_test "set environment" "Argument required .environment variable and value.*" "set environment"
509#test set height
510gdb_test "set height" "Argument required .integer to set it to.*" "set height"
511#test set history expansion
512gdb_test "set history expansion" "" "set history expansion"
513#test set history filename
514gdb_test "set history filename" "Argument required .filename to set it to.*" "set history filename"
515#test set history save
516gdb_test "set history save" "" "set history save"
517#test set history size
518gdb_test "set history size" "Argument required .integer to set it to.*" "set history size"
519#test set history
520gdb_test "set history" "\"set history\" must be followed by the name of a history subcommand..*\[\r\n\]+List of set history subcommands:.*\[\r\n\]+set history expansion -- Set history expansion on command input.*\[\r\n\]+set history filename -- Set the filename in which to record the command history.*\[\r\n\]+set history save -- Set saving of the history record on exit.*\[\r\n\]+set history size -- Set the size of the command history.*\[\r\n\]+Type \"help set history\" followed by set history subcommand name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "set history"
521#test set language
522gdb_test "set language" "The currently understood settings are:.*\[\r\n\]+local or auto *Automatic setting based on source file.*\[\r\n\]+c *Use the C language.*\[\r\n\]+c\[+\]+ *Use the C\[+\]+ language.*\[\r\n\]+modula-2 *Use the Modula-2 language.*" "set language"
523#test set listsize
524gdb_test "set listsize" "Argument required .integer to set it to.*" "set listsize"
525#test set print "p" abbreviation
526gdb_test "set p" "\"set print\" must be followed by the name of a print subcommand..*\[\r\n\]+List of set print subcommands:.*\[\r\n\]+Type \"help set print\" followed by set print subcommand name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "set print \"p\" abbreviation"
527#test set print "pr" abbreviation
528gdb_test "set pr" "\"set print\" must be followed by the name of a print subcommand..*\[\r\n\]+List of set print subcommands:.*\[\r\n\]+Type \"help set print\" followed by set print subcommand name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "set print \"pr\" abbreviation"
529#test set print
530gdb_test "set print" "\"set print\" must be followed by the name of a print subcommand..*\[\r\n\]+List of set print subcommands:.*\[\r\n\]+Type \"help set print\" followed by set print subcommand name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "set print"
531#test set print address
532gdb_test "set print address" "" "set print address"
533#test set print array
534gdb_test "set print array" "" "set print array"
535#test set print asm-demangle
536gdb_test "set print asm-demangle" "" "set print asm-demangle"
537#test set print demangle
538gdb_test "set print demangle" "" "set print demangle"
539#test set print elements
540gdb_test "set print elements" "Argument required .integer to set it to.*" "set print elements"
541#test set print object
542gdb_test "set print object" "" "set print object"
543#test set print pretty
544gdb_test "set print pretty" "" "set print pretty"
545#test set print sevenbit-strings
546gdb_test "set print sevenbit-strings" "" "set print sevenbit-strings"
547#test set print union
548gdb_test "set print union" "" "set print union"
549#test set print vtbl
550gdb_test "set print vtbl" "" "set print vtbl"
551# FIXME -- need a test for "set prompt"
552#test set radix
553gdb_test "set radix" "Input and output radices now set to decimal 10, hex a, octal 12.*" "set radix"
554#test set symbol-reloading
555gdb_test "set symbol-reloading" "" "set symbol-reloading"
556#test set variable
557gdb_test "set variable" "Argument required .expression to compute.*" "set variable"
558#test set verbose
559gdb_test "set verbose" "" "set verbose"
560#test set width
561gdb_test "set width" "Argument required .integer to set it to.*" "set width"
562#test set write
563# This is only supported on targets which use exec.o.
564gdb_test "set write" "" "set write"
565#test set
566gdb_test "set" "Argument required .expression to compute.*" "set"
567#test shell echo Hi dad!
568gdb_test "shell echo Hi dad!" "Hi dad!" "shell echo Hi dad!"
569#test show annotate
570gdb_test "show annotate" "Annotation_level is 0." "show annotate"
571#test show args
572gdb_test "show args" "Argument list to give program being debugged when it is started is \"\"." "show args"
573#test show check "c" abbreviation
574gdb_test "show c" "range: *Range checking is \"auto; currently off\"..*\[\r\n\]+type: *Type checking is \"auto; currently off\".*" "show check \"c\" abbreviation"
575#test show check "ch" abbreviation
576gdb_test "show ch" "range: *Range checking is \"auto; currently off\"..*\[\r\n\]+type: *Type checking is \"auto; currently off\"." "show check \"ch\" abbreviation"
577#test show check
578gdb_test "show check" "range: *Range checking is \"auto; currently off\"..*\[\r\n\]+type: *Type checking is \"auto; currently off\"." "show check"
579#test show check range
580gdb_test "show check range" "Range checking is \"auto; currently off\"." "show check range"
581#test show check type
582gdb_test "show check type" "Type checking is \"auto; currently off\"." "show check type"
583#test show commands
584gdb_test "show commands" "" "show commands"
585#test show complaints
586gdb_test "show complaints" "Max number of complaints about incorrect symbols is 0." "show complaints"
587#test show confirm
588gdb_test "show confirm" "Whether to confirm potentially dangerous operations is o\[a-z\]*." "show confirm"
589#test show convenience
590gdb_test "show convenience" "No debugger convenience variables now defined..*\[\r\n\]+Convenience variables have names starting with \".\";.*\[\r\n\]+use \"set\" as in \"set .foo = 5\" to define them." "show convenience"
591#test show directories
592gdb_test "show directories" "Source directories searched: .cdir:.cwd" "show directories"
593#test show editing
594gdb_test "show editing" "Editing of command lines as they are typed is o\[a-z\]*." "show editing"
595#test show height
596gdb_test "show height" "Number of lines gdb thinks are in a page is.*" "show height"
597#test show history expansion
598gdb_test "show history expansion" "History expansion on command input is o\[a-z\]*.*" "show history expansion"
599#test show history filename
600gdb_test "show history filename" "The filename in which to record the command history is.*.gdb_history.*" "show history filename"
601#test show history save
602gdb_test "show history save" "Saving of the history record on exit is on." "show history save"
603#test show history size
604gdb_test "show history size" "The size of the command history is.*" "show history size"
605#test show history
606gdb_test "show history" "expansion: *History expansion on command input is o.*\[\r\n\]+filename: *The filename in which to record the command history is.*.gdb_history.*\[\r\n\]+save: *Saving of the history record on exit is o.*\[\r\n\]+size: * The size of the command history is.*" "show history"
607#test show language
608gdb_test "show language" "The current source language is \"auto; currently c\"." "show language"
609#test show listsize
610gdb_test "show listsize" "Number of source lines gdb will list by default is 10." "show listsize"
611#test show print "p" abbreviation
612gdb_test "show p" ".*" "show p"
613#test show print "pr" abbreviation
614gdb_test "show pr" ".*" "show pr"
615#test show print
616gdb_test "show print" "" "show print"
617#test show paths
618gdb_test "show paths" "Executable and object file path:.*" "show paths"
619#test show print address
620gdb_test "show print address" "Printing of addresses is on." "show print address"
621#test show print array
622gdb_test "show print array" "Prettyprinting of arrays is on." "show print array"
623#test show print asm-demangle
624gdb_test "show print asm-demangle" "Demangling of C\[+\]+ names in disassembly listings is on." "show print asm-demangle"
625#test show print demangle
626gdb_test "show print demangle" "Demangling of encoded C\[+\]+ names when displaying symbols is on." "show print demangle"
627#test show print elements
628gdb_test "show print elements" "Limit on string chars or array elements to print is 200." "show print elements"
629#test show print object
630gdb_test "show print object" "Printing of object's derived type based on vtable info is on." "show print object"
631#test show print pretty
632gdb_test "show print pretty" "Prettyprinting of structures is on." "show print pretty"
633#test show print sevenbit-strings
634gdb_test "show print sevenbit-strings" "Printing of 8-bit characters in strings as .nnn is on." "show print sevenbit-strings"
635#test show print union
636gdb_test "show print union" "Printing of unions interior to structures is on." "show print union"
637#test show print vtbl
638gdb_test "show print vtbl" "Printing of C\[+\]+ virtual function tables is on." "show print vtbl"
639#test show prompt
640# In the FAIL case, can't just look for $gdb_prompt because that will match
641# the output, rather than the prompt. So look for $gdb_prompt at the start
642# of a line.
643gdb_test "show prompt" "Gdb's prompt is \"$gdb_prompt \".*" "show prompt"
644#test show radix
645gdb_test "show radix" "Input and output radices set to decimal 10, hex a, octal 12." "show radix"
646#test show symbol-reloading
647gdb_test "show symbol-reloading" "Dynamic symbol table reloading multiple times in one run is on." "show symbol-reloading"
648#test show user
649gdb_test "show user" "" "show user"
650#test show values
651gdb_test "show values" "" "show values"
652#test show verbose
653gdb_test "show verbose" "Verbose printing of informational messages is o.*|Verbosity is off.*" "show verbose"
654#test show version
085dd6e6 655setup_xfail "hppa*-hp-hpux*"
c906108c
SS
656gdb_test "show version" "GNU gdb \[0-9\.\]*.*\[\r\n\]+Copyright \[0-9\]* Free Software Foundation, Inc.*\[\r\n\]+GDB is free software, covered by the GNU General Public License, and you are.*\[\r\n\]+welcome to change it and/or distribute copies of it under certain conditions.*\[\r\n\]+Type \"show copying\" to see the conditions.*\[\r\n\]+There is absolutely no warranty for GDB. Type \"show warranty\" for details.*\[\r\n\]+This GDB was configured as .*|GDB is free software and you are welcome to distribute copies of it.*\[\r\n\]+ under certain conditions; type \"show copying\" to see the conditions..*\[\r\n\]+There is absolutely no warranty for GDB; type \"show warranty\" for details..*\[\r\n\]+GDB.*Copyright \[0-9\]* Free Software Foundation, Inc.*" "show version"
657#test show width
658gdb_test "show width" "Number of characters gdb thinks are in a line is.*" "show width"
659#test show write
660# This is only supported on targets which use exec.o.
661gdb_test "show write" "Writing into executable and core files is o.*" "show write"
662#test show
663gdb_test "show" "confirm: *Whether to confirm potentially dangerous operations is on..*\[\r\n\]+history filename: *The filename in which to record the command history is .*\[\r\n\]+history save: *Saving of the history record on exit is on..*\[\r\n\]+history size: *The size of the command history is.*\[\r\n\]+listsize: *Number of source lines gdb will list by default is 10.*\[\r\n\]+print elements: *Limit on string chars or array elements to print is 200..*" "show"
664#test stepi "si" abbreviation
665setup_xfail "a29k-*-udi"
666gdb_test "si" "The program is not being run." "stepi \"si\" abbreviation"
667#test stepi
668setup_xfail "a29k-*-udi"
669gdb_test "stepi" "The program is not being run." "stepi"
670#test signal
671setup_xfail "a29k-*-udi"
672gdb_test "signal" "The program is not being run." "signal"
673#test source
674gdb_test "source" "source command requires pathname of file to source..*|No such file or directory.*" "source"
675#test step "s" abbreviation
676setup_xfail "a29k-*-udi"
677gdb_test "s" "The program is not being run." "step \"s\" abbreviation #2"
678#test step
679setup_xfail "a29k-*-udi"
680gdb_test "step" "The program is not being run." "step #2"
681#test symbol-file
682gdb_test "symbol-file" "" "symbol-file"
683
684#test target child
685gdb_test "target child" "Use the \"run\" command to start a Unix child process.*|Undefined target command: \"child\". *Try \"help target\".*" "target child"
686
687#test target procfs
688gdb_test "target procfs" "Use the \"run\" command to start a Unix child process.*|Undefined target command: \"procfs\". *Try \"help target\".*" "target procfs"
689
690#test target core
691send_gdb "target core\n"
692gdb_expect {
693 -re "No core file specified..*$gdb_prompt $" { pass "target core" }
694 -re ".*A program is being debugged already. Kill it. .y or n.*$" {
695 send_gdb "n\n"
696 if $verbose>1 then {
697 send_user "\t\tDidn't kill program being debugged\n"
698 }
699 gdb_expect -re "$gdb_prompt $" { }
700 pass "target core"
701 }
702 -re "Undefined target command: \"core\". Try \"help target\"..*$gdb_prompt $" { pass "target core" }
703 -re ".*$gdb_prompt $" { fail "target core" }
704 timeout { fail "(timeout) target core" }
705}
706
707#test target exec
708send_gdb "target exec\n"
709gdb_expect {
710 -re "No executable file now..*$gdb_prompt $"\
711 { pass "target exec" }
712 -re ".*A program is being debugged already. Kill it. .y or n.*$" {
713 send_gdb "n\n"
714 if $verbose>1 then {
715 send_user "\t\tDidn't kill program being debugged\n"
716 }
717 gdb_expect -re "$gdb_prompt $" { }
718 pass "target exec"
719 }
720 -re ".*$gdb_prompt $" { fail "target exec" }
721 timeout { fail "(timeout) target exec" }
722 }
723
724#test target remote
725if ![istarget "*-*-udi*"] then {
726 send_gdb "target remote\n"
727 gdb_expect {
085dd6e6 728 -re "To open a remote debug connection, you need to specify what.*serial.*device is attached to the remote system .e.g. /dev/ttya.*$gdb_prompt $"\
c906108c
SS
729 { pass "target remote" }
730 -re ".*A program is being debugged already. Kill it. .y or n.*$" {
731 send_gdb "n\n"
732 if $verbose>1 then {
733 send_user "\t\tDidn't kill program being debugged\n"
734 }
735 gdb_expect -re "$gdb_prompt $" { }
736 pass "target remote"
737 }
738 -re ".*$gdb_prompt $" { fail "target remote" }
739 timeout { fail "(timeout) target remote" }
740 }
741}
742
743#test target
744gdb_test "target" "Argument required .target name.*" "target"
745#test tbreak
746gdb_test "tbreak" "No default breakpoint address now." "tbreak"
747#test tty
748gdb_test "tty" "Argument required .terminal name for running target process.*" "tty"
749#test until "u" abbreviation
750setup_xfail "a29k-*-udi"
751gdb_test "u" "The program is not running." "until \"u\" abbreviation"
752#test until
753setup_xfail "a29k-*-udi"
754gdb_test "until" "The program is not running." "until"
755#test undisplay
756# FIXME -- need to dump full output to detailed log
757send_gdb "undisplay\n"
758gdb_expect {
759 -re "Delete all auto-display expressions.*y or n. $" {
760 send_gdb "y\n"
761 gdb_expect {
762 -re "$gdb_prompt $" { pass "undisplay prompt" }
763 timeout { fail "(timeout) (timeout) undisplay prompt" }
764 }
765 }
766 timeout { fail "(timeout) (timeout) undisplay prompt" }
767}
768
769#test unset environment
770send_gdb "unset environment\n"
771gdb_expect {
772 -re "Delete all environment variables?.*y or n. $" {
773 send_gdb "y\n"
774 gdb_expect {
775 -re "$gdb_prompt $" { pass "unset environmentprompt" }
776 timeout {
777 fail "(timeout) (timeout) unset environment prompt"
778 }
779 }
780 }
781 timeout {
782 fail "(timeout) (timeout) unset environment prompt"
783 }
784}
785
786#test unset
787gdb_test "unset" "\"unset\" must be followed by the name of an unset subcommand..*\[\r\n\]+List of unset subcommands:.*\[\r\n\]+unset environment -- Cancel environment variable VAR for the program.*\[\r\n\]+Type \"help unset\" followed by unset subcommand name for full documentation..*\[\r\n\]+Command name abbreviations are allowed if unambiguous." "unset"
788#test up
789#test up-silently
790gdb_test "up-silently" "No stack." "up-silently"
791#test watch
792gdb_test "watch" "Argument required .expression to compute.*" "watch"
793#test whatis
794gdb_test "whatis" "The history is empty." "whatis"
795#test where
796setup_xfail "a29k-*-udi"
797gdb_test "where" "No stack." "where"
798#test x
799#The case in which it prints a number is for vxgdb.
085dd6e6
JM
800send_gdb "x\n"
801gdb_expect {
802 -re "0x0:.*Cannot access memory at address 0x0..*$gdb_prompt $" {
803 pass "x"
804 }
805 -re "0x0:.*Error accessing memory address 0x0:.*$gdb_prompt $" {
806 pass "x"
807 }
808 -re ".*$gdb_prompt $" { fail "x" }
809 timeout { fail "(timeout) x" }
810}
c906108c
SS
811
812gdb_exit
This page took 0.062206 seconds and 4 git commands to generate.