Approved by Jim Blandy:
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / maint.exp
CommitLineData
fc33412a 1# Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
c906108c
SS
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 2 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, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@prep.ai.mit.edu
19
20# This file was written by Elena Zannoni (ezannoni@cygnus.com)
21
22# this file tests maintenance commands and help on those.
23
24# source file used is break.c
25
26
27#maintenance check-symtabs -- Check consistency of psymtabs and symtabs
28#maintenance space -- Set the display of space usage
4f337972
AC
29#maintenance set -- Set GDB internal variables used by the GDB maintainer
30#maintenance show -- Show GDB internal variables used by the GDB maintainer
c906108c
SS
31#maintenance time -- Set the display of time usage
32#maintenance demangle -- Demangle a C++ mangled name
33#maintenance dump-me -- Get fatal error; make debugger dump its core
34#maintenance print -- Maintenance command for printing GDB internal state
35#maintenance info -- Commands for showing internal info about the program being debugged
7be570e7 36#maintenance internal-error -- Give GDB an internal error.
c906108c
SS
37#
38#maintenance print statistics -- Print statistics about internal gdb state
39#maintenance print objfiles -- Print dump of current object file definitions
40#maintenance print psymbols -- Print dump of current partial symbol definitions
41#maintenance print msymbols -- Print dump of current minimal symbol definitions
42#maintenance print symbols -- Print dump of current symbol definitions
43#maintenance print type -- Print a type chain for a given symbol
44#maintenance print unwind -- Print unwind table entry at given address
45#
46#
47#maintenance info sections -- List the BFD sections of the exec and core files
48#maintenance info breakpoints -- Status of all breakpoints
49#
50
51
52
53if $tracelevel then {
54 strace $tracelevel
55 }
56
57global usestubs
58
59#
60# test running programs
61#
62set prms_id 0
63set bug_id 0
64
65set testfile "break"
66set srcfile ${testfile}.c
67set binfile ${objdir}/${subdir}/${testfile}
68if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-w}] != ""
69 } {
70 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
71}
72
73
74gdb_exit
75gdb_start
76gdb_reinitialize_dir $srcdir/$subdir
77gdb_load ${binfile}
78
79if ![runto_main] then {
80 perror "tests suppressed"
81}
82
83
84# The commands we test here produce many lines of output; disable "press
85# <return> to continue" prompts.
86send_gdb "set height 0\n"
87gdb_expect -re "$gdb_prompt $"
88
89# use a larger expect input buffer for long help outputs.
90match_max 6000
91
92#
93# this command does not produce any output
94# unless there is some problem with the symtabs and psymtabs
95# so that branch will really never be covered in this tests here!!
96#
97
a0b3c4fd
JM
98# guo: on linux this command output is huge. for some reason splitting up
99# the regexp checks works.
100#
c906108c
SS
101send_gdb "maint check-symtabs\n"
102gdb_expect {
a0b3c4fd
JM
103 -re "^maint check-symtabs" {
104 gdb_expect {
105 -re "$gdb_prompt $" \
c906108c 106 { pass "maint check-symtabs" }
a0b3c4fd
JM
107 timeout { fail "(timeout) maint check-symtabs" }
108 }
109 }
c906108c
SS
110 -re ".*$gdb_prompt $" { fail "maint check-symtabs" }
111 timeout { fail "(timeout) maint check-symtabs" }
112 }
113
114send_gdb "maint space\n"
115gdb_expect {
116 -re "\"maintenance space\" takes a numeric argument\\..*$gdb_prompt $"\
117 { pass "maint space" }
118 -re ".*$gdb_prompt $" { fail "maint space" }
119 timeout { fail "(timeout) maint space" }
120 }
121
122send_gdb "maint space 1\n"
123gdb_expect {
124 -re "Space used: $decimal \\(\\+$decimal for this command\\).*$gdb_prompt $"\
125 { pass "maint space 1" }
126 -re ".*$gdb_prompt $" { fail "maint space 1" }
127 timeout { fail "(timeout) maint space 1" }
128 }
129
130
131send_gdb "maint time\n"
132gdb_expect {
133 -re "\"maintenance time\" takes a numeric argument\\..*Space used: $decimal \\(\\+$decimal for this command\\).*$gdb_prompt $"\
134 { pass "maint time" }
135 -re ".*$gdb_prompt $" { fail "maint time" }
136 timeout { fail "(timeout) maint time" }
137 }
138
139send_gdb "maint time 1\n"
140gdb_expect {
141 -re "Command execution time: $decimal.*Space used: $decimal \\(\\+$decimal for this command\\).*$gdb_prompt $"\
142 { pass "maint time 1" }
143 -re ".*$gdb_prompt $" { fail "maint time 1" }
144 timeout { fail "(timeout) maint time 1" }
145 }
146
147send_gdb "maint time 0\n"
148gdb_expect {
149 -re "Space used: $decimal \\(\\+$decimal for this command\\).*$gdb_prompt $"\
150 { pass "maint time 0" }
151 -re ".*$gdb_prompt $" { fail "maint time 0" }
152 timeout { fail "(timeout) maint time 0" }
153 }
154
155
156send_gdb "maint space 0\n"
157gdb_expect {
158 -re "maint space 0\r\n$gdb_prompt $"\
159 { pass "maint space 0" }
160 -re ".*$gdb_prompt $" { fail "maint space 0" }
161 timeout { fail "(timeout) maint space 0" }
162 }
163
164send_gdb "maint demangle\n"
165gdb_expect {
166 -re "\"maintenance demangle\" takes an argument to demangle\\..*$gdb_prompt $"\
167 { pass "maint demangle" }
168 -re ".*$gdb_prompt $" { fail "maint demangle" }
169 timeout { fail "(timeout) maint demangle" }
170 }
171
172send_gdb "maint demangle main\n"
173gdb_expect {
174 -re "Can't demangle \"main\".*$gdb_prompt $"\
175 { pass "maint demangle" }
176 -re ".*$gdb_prompt $" { fail "maint demangle" }
177 timeout { fail "(timeout) maint demangle" }
178 }
179
180
181send_gdb "maint print statistics\n"
182gdb_expect {
183 -re "Statistics for.*break.*Number of \"minimal\" symbols read.*Number of \"partial\" symbols read.*Number of \"types\" defined.*Total memory used for psymbol obstack.*Total memory used for psymbol cache.*Total memory used for symbol obstack.*Total memory used for type obstack.*$gdb_prompt $"\
184 { pass "maint print statistics" }
185 -re ".*$gdb_prompt $" { fail "maint print statistics" }
186 timeout { fail "(timeout) maint print statistics" }
187 }
188
189send_gdb "maint print objfiles\n"
adf40b2e 190
c906108c 191# To avoid timeouts, we avoid expects with many .* patterns that match
adf40b2e
JM
192# many lines. Instead, we keep track of which milestones we've seen
193# in the output, and stop when we've seen all of them.
194
195set header 0
196set psymtabs 0
197set symtabs 0
198set keep_looking 1
199
200while {$keep_looking} {
201 gdb_expect {
202
03dd63aa 203 -re ".*Object file.*break($EXEEXT)?: Objfile at $hex, bfd at $hex, \[0-9\]* minsyms\[\r\t \]+\n" { set header 1 }
adf40b2e
JM
204 -re ".*Psymtabs:\[\r\t \]+\n" { set psymtabs 1 }
205 -re ".*Symtabs:\[\r\t \]+\n" { set symtabs 1 }
206
207 -re ".*$gdb_prompt $" {
208 set keep_looking 0
209 }
210 timeout {
211 fail "(timeout) maint print objfiles"
212 set keep_looking 0
213 }
214 }
c906108c 215}
adf40b2e
JM
216
217proc maint_pass_if {val name} {
218 if $val { pass $name } else { fail $name }
c906108c
SS
219}
220
adf40b2e
JM
221maint_pass_if $header "maint print objfiles: header"
222maint_pass_if $psymtabs "maint print objfiles: psymtabs"
223maint_pass_if $symtabs "maint print objfiles: symtabs"
224
c906108c
SS
225send_gdb "maint print psymbols\n"
226gdb_expect {
227 -re "print-psymbols takes an output file name and optional symbol file name.*$gdb_prompt $"\
228 { pass "maint print psymbols w/o args" }
229 -re ".*$gdb_prompt $" { fail "maint print psymbols w/o args" }
230 timeout { fail "(timeout) maint print psymbols w/o args" }
231 }
232
233send_gdb "maint print psymbols psymbols_output\n"
234gdb_expect {
235 -re "^maint print psymbols psymbols_output\r\n$gdb_prompt $"\
236 {
237 send_gdb "shell ls psymbols_output\n"
238 gdb_expect {
239 -re "psymbols_output\r\n$gdb_prompt $"\
240 {
241 # We want this grep to be as specific as possible,
242 # so it's less likely to match symbol file names in
243 # psymbols_output. Yes, this actually happened;
244 # poor expect got tons of output, and timed out
245 # trying to match it. --- Jim Blandy <jimb@cygnus.com>
246 send_gdb "shell grep 'main.*function' psymbols_output\n"
247 gdb_expect {
248 -re ".main., function, $hex.*$gdb_prompt $"\
a0b3c4fd
JM
249 { pass "maint print psymbols 1" }
250 -re ".*main. .., function, $hex.*$gdb_prompt $"\
251 { pass "maint print psymbols 2" }
c906108c
SS
252 -re ".*$gdb_prompt $" { fail "maint print psymbols" }
253 timeout { fail "(timeout) maint print psymbols" }
254 }
255 gdb_test "shell rm -f psymbols_output" ""
256
257 }
258 -re ".*$gdb_prompt $" { fail "maint print psymbols" }
259 timeout { fail "(timeout) maint print psymbols" }
260 }
261 }
262 -re ".*$gdb_prompt $" { fail "maint print psymbols" }
263 timeout { fail "(timeout) maint print psymbols" }
264 }
265
266
267send_gdb "maint print msymbols\n"
268gdb_expect {
269 -re "print-msymbols takes an output file name and optional symbol file name.*$gdb_prompt $"\
270 { pass "maint print msymbols w/o args" }
271 -re ".*$gdb_prompt $" { fail "maint print msymbols w/o args" }
272 timeout { fail "(timeout) maint print msymbols w/o args" }
273 }
274
275send_gdb "maint print msymbols msymbols_output\n"
276gdb_expect {
277 -re "^maint print msymbols msymbols_output\r\n$gdb_prompt $"\
278 {
279 send_gdb "shell ls msymbols_output\n"
280 gdb_expect {
281 -re "msymbols_output\r\n$gdb_prompt $"\
282 {
283 send_gdb "shell grep factorial msymbols_output\n"
284 gdb_expect {
285 -re "\\\[ *$decimal\\\] T\[ \t\]+$hex factorial.*$gdb_prompt $"\
286 { pass "maint print msymbols" }
287 -re ".*$gdb_prompt $" { fail "maint print msymbols" }
288 timeout { fail "(timeout) maint print msymbols" }
289 }
290 gdb_test "shell rm -f msymbols_output" ""
291
292 }
293 -re ".*$gdb_prompt $" { fail "maint print msymbols" }
294 timeout { fail "(timeout) maint print msymbols" }
295 }
296 }
297 -re ".*$gdb_prompt $" { fail "maint print msymbols" }
298 timeout { fail "(timeout) maint print msymbols" }
299 }
300
301
302send_gdb "maint print symbols\n"
303gdb_expect {
304 -re "Arguments missing: an output file name and an optional symbol file name.*$gdb_prompt $"\
305 { pass "maint print symbols w/o args" }
306 -re ".*$gdb_prompt $" { fail "maint print symbols w/o args" }
307 timeout { fail "(timeout) maint print symbols w/o args" }
308 }
309
adf40b2e
JM
310# This command can legitimately take many minutes to execute. If the
311# executable is dynamically linked, then you get all the debugging
312# info for the entire library --- 89Mb on my system. -jimb
313
314set old_timeout $timeout
315set timeout 600
316
c906108c
SS
317send_gdb "maint print symbols symbols_output\n"
318gdb_expect {
319 -re "^maint print symbols symbols_output\r\n$gdb_prompt $"\
320 {
321 send_gdb "shell ls symbols_output\n"
322 gdb_expect {
323 -re "symbols_output\r\n$gdb_prompt $"\
324 {
325 # See comments for `maint print psymbols'.
adf40b2e 326 send_gdb "shell grep 'main(.*block' symbols_output\n"
c906108c
SS
327 gdb_expect {
328 -re "int main\\(int, char \\*\\*, char \\*\\*\\); block.*$gdb_prompt $"\
329 { pass "maint print symbols" }
330 -re ".*$gdb_prompt $" { fail "maint print symbols" }
331 timeout { fail "(timeout) maint print symbols" }
332 }
333 gdb_test "shell rm -f symbols_output" ""
334
335 }
336 -re ".*$gdb_prompt $" { fail "maint print symbols" }
337 timeout { fail "(timeout) maint print symbols" }
338 }
339 }
340 -re ".*$gdb_prompt $" { fail "maint print symbols" }
341 timeout { fail "(timeout) maint print symbols" }
342 }
343
adf40b2e 344set timeout $old_timeout
c906108c
SS
345
346send_gdb "maint print type argc\n"
347gdb_expect {
e9e79dd9 348 -re "type node $hex\r\nname .int. \\($hex\\)\r\ntagname .<NULL>. \\($hex\\)\r\ncode $hex \\(TYPE_CODE_INT\\)\r\nlength \[24\]\r\nupper_bound_type $hex \\(BOUND_SIMPLE\\)\r\nlower_bound_type $hex \\(BOUND_SIMPLE\\)\r\nobjfile $hex\r\ntarget_type $hex\r\npointer_type $hex\r\nreference_type $hex\r\ncv_type $hex\r\nas_type $hex\r\nflags $hex\r\nnfields 0 $hex\r\nvptr_basetype $hex\r\nvptr_fieldno -1\r\ntype_specific $hex\r\n$gdb_prompt $"\
c906108c
SS
349 { pass "maint print type" }
350 -re ".*$gdb_prompt $" { fail "maint print type" }
351 timeout { fail "(timeout) maint print type" }
352 }
353
a0b3c4fd
JM
354if [istarget "hppa*-*-11*"] {
355 setup_xfail hppa*-*-*11* CLLbs14860
356 send "maint print unwind &main\n"
357 expect {
358 -re ".*unwind_table_entry \\($hex\\):\r\n\tregion_start = $hex <main>\r\n\tregion_end = $hex <main\\+\[0-9\]*>\r\n\tflags = Args_stored Save_RP\r\n\tRegion_description = $hex\r\n\tEntry_FR = $hex\r\n\tEntry_GR = $hex\r\n\tTotal_frame_size = $hex\r\n$gdb_prompt $"\
359 { pass "maint print unwind" }
360 -re ".*unwind_table_entry \\($hex\\):\r\n\tregion_start = $hex <main>\r\n\tregion_end = $hex <main\\+\[0-9\]*>\r\n\tflags = Args_stored Save_RP\r\n\tFLD = $hex\r\n\tFLD = $hex\r\n\tFLD = $hex\r\n\tFLD = $hex\r\n$gdb_prompt $"\
361 { xfail "maint print unwind" }
362 -re ".*$gdb_prompt $" { xfail "maint info unwind" }
363 timeout { fail "(timeout) maint print unwind" }
364 }
365}
c906108c
SS
366
367set oldtimeout $timeout
368set timeout [expr $timeout + 300]
369
370# It'd be nice to check for every possible section. However, that's
371# problematic, since the relative ordering wanders from release to
372# release of the compilers. Instead, we'll just check for two
373# sections which appear to always come out in the same relative
374# order. (If that changes, then we should just check for one
375# section.)
376#
377# And by the way: This testpoint will break for PA64, where a.out's
378# are ELF files.
379#
380send_gdb "maint info sections\n"
381gdb_expect {
03dd63aa 382 -re "Exec file:\r\n.*break($EXEEXT)?., file type.*$gdb_prompt $"\
c906108c
SS
383 { pass "maint info sections" }
384 -re ".*$gdb_prompt $" { fail "maint info sections" }
385 timeout { fail "(timeout) maint info sections" }
386 }
387
388send_gdb "maint info breakpoints\n"
389gdb_expect {
a0b3c4fd 390 -re "Num\[ \t\]+Type\[ \t\]+Disp\[ \t\]+Enb\[ \t\]+Address\[ \t\]+What\r\n1\[ \t\]+breakpoint\[ \t\]+keep\[ \t\]+y\[ \t\]+$hex in main at.*break.c:75\r\n\[ \t\]+breakpoint already hit 1 time\r\n.*$gdb_prompt $"\
c906108c
SS
391 { pass "maint info breakpoints" }
392 -re ".*$gdb_prompt $" { fail "maint info breakpoints" }
393 timeout { fail "(timeout) maint info breakpoints" }
394}
395
396# Try it again, and check for shlib event info. Not supported everywhere.
adf40b2e
JM
397if {! ([istarget "hppa*-*-hpux*"]
398 || [istarget "*-*-linux*"]
399 || [istarget "*-*-solaris*"])} then {
c906108c
SS
400 setup_xfail "*-*-*"
401}
402send_gdb "maint info breakpoints\n"
403gdb_expect {
a0b3c4fd
JM
404 -re "Num\[ \t\]+Type\[ \t\]+Disp\[ \t\]+Enb\[ \t\]+Address\[ \t\]+What\r\n1\[ \t\]+breakpoint\[ \t\]+keep\[ \t\]+y\[ \t\]+$hex in main at.*break.c:75\r\n\[ \t\]+breakpoint already hit 1 time\r\n.*$gdb_prompt $"\
405 { pass "maint info breakpoints" }
406 -re "Num\[ \t\]+Type\[ \t\]+Disp\[ \t\]+Enb\[ \t\]+Address\[ \t\]+What\r\n1\[ \t\]+breakpoint\[ \t\]+keep\[ \t\]+y\[ \t\]+$hex in main at.*break.c:75\r\n\[ \t\]+breakpoint already hit 1 time\r\n-1\[ \t\]+shlib events\[ \t\]+keep\[ \t\]+y\[ \t\]+$hex.*breakpoint already hit.*$gdb_prompt $"\
c906108c
SS
407 { pass "maint info breakpoints: shlib events" }
408 -re ".*$gdb_prompt $" {
409 fail "maint info breakpoints: shlib events"
410 }
411 timeout {
412 fail "(timeout) maint info breakpoints: shlib events"
413 }
414}
415
416
417send_gdb "maint print\n"
418gdb_expect {
419 -re "\"maintenance print\" must be followed by the name of a print command\\.\r\nList.*unambiguous\\..*$gdb_prompt $"\
420 { pass "maint print w/o args" }
421 -re ".*$gdb_prompt $" { fail "maint print w/o args" }
422 timeout { fail "(timeout) maint print w/o args" }
423 }
424
425send_gdb "maint info\n"
426gdb_expect {
427 -re "\"maintenance info\" must be followed by the name of an info command\\.\r\nList.*unambiguous\\..*$gdb_prompt $"\
428 { pass "maint info w/o args" }
429 -re ".*$gdb_prompt $" { fail "maint info w/o args" }
430 timeout { fail "(timeout) maint info w/o args" }
431 }
432
433send_gdb "maint\n"
434gdb_expect {
435 -re "\"maintenance\" must be followed by the name of a maintenance command\\.\r\nList.*unambiguous\\..*$gdb_prompt $"\
436 { pass "maint w/o args" }
437 -re ".*$gdb_prompt $" { fail "maint w/o args" }
438 timeout { fail "(timeout) maint w/o args" }
439 }
440
441
442set timeout $oldtimeout
443
444#============test help on maint commands
445
446send_gdb "help maint\n"
447gdb_expect {
4f337972 448 -re "Commands for use by GDB maintainers\\..*Includes commands to dump specific internal GDB structures in.*a human readable form, to cause GDB to deliberately dump core,.*to test internal functions such as the C.. demangler, etc\\..*List of maintenance subcommands:.*maintenance check-symtabs.*maintenance demangle.*(maintenance dump-me.*)?maintenance info.*maintenance internal-error.*maintenance print.*maintenance set.*maintenance show.*maintenance space.*maintenance time.*Type.*help maintenance.*followed by maintenance subcommand name for full documentation\\..*Command name abbreviations are allowed if unambiguous\\..*$gdb_prompt $"\
c906108c
SS
449 { pass "help maint" }
450 -re ".*$gdb_prompt $" { fail "help maint" }
451 timeout { fail "(timeout) help maint" }
452 }
453
454
455send_gdb "help maint check-symtabs\n"
456gdb_expect {
457 -re "Check consistency of psymtabs and symtabs\\..*$gdb_prompt $"\
458 { pass "help maint check-symtabs" }
459 -re ".*$gdb_prompt $" { fail "help maint check-symtabs" }
460 timeout { fail "(timeout) help maint check-symtabs" }
461 }
462
463send_gdb "help maint space\n"
464gdb_expect {
465 -re "Set the display of space usage\\.\r\nIf nonzero, will cause the execution space for each command to be\r\ndisplayed, following the command's output\\..*$gdb_prompt $"\
466 { pass "help maint space" }
467 -re ".*$gdb_prompt $" { fail "help maint space" }
468 timeout { fail "(timeout) help maint space" }
469 }
470
471send_gdb "help maint time\n"
472gdb_expect {
473 -re "Set the display of time usage\\.\r\nIf nonzero, will cause the execution time for each command to be\r\ndisplayed, following the command's output\\..*$gdb_prompt $"\
474 { pass "help maint time" }
475 -re ".*$gdb_prompt $" { fail "help maint time" }
476 timeout { fail "(timeout) help maint time" }
477 }
478
479send_gdb "help maint demangle\n"
480gdb_expect {
481 -re "Demangle a C\\+\\+ mangled name\\.\r\nCall internal GDB demangler routine to demangle a C\\+\\+ link name\r\nand prints the result\\..*$gdb_prompt $"\
482 { pass "help maint demangle" }
483 -re ".*$gdb_prompt $" { fail "help maint demangle" }
484 timeout { fail "(timeout) help maint demangle" }
485 }
486
93076499
ND
487# dump-me is disabled ifdef _WIN32.
488if [ishost *cygwin*] {
489 setup_xfail "*-*-*"
490}
c906108c
SS
491send_gdb "help maint dump-me\n"
492gdb_expect {
493 -re "Get fatal error; make debugger dump its core\\.\r\nGDB sets it's handling of SIGQUIT back to SIG_DFL and then sends\r\nitself a SIGQUIT signal\\..*$gdb_prompt $"\
494 { pass "help maint dump-me" }
495 -re ".*$gdb_prompt $" { fail "help maint dump-me" }
496 timeout { fail "(timeout) help maint dump-me" }
497 }
498
7be570e7
JM
499send_gdb "help maint internal-error\n"
500gdb_expect {
501 -re "Give GDB an internal error\\.\r\nCause GDB to behave as if an internal error was detected\\..*$gdb_prompt $"\
502 { pass "help maint internal-error" }
503 -re ".*$gdb_prompt $" { fail "help maint internal-error" }
504 timeout { fail "(timeout) help maint internal-error" }
505 }
506
c906108c
SS
507send_gdb "help maint print statistics\n"
508gdb_expect {
509 -re "Print statistics about internal gdb state\\..*$gdb_prompt $"\
510 { pass "help maint print statistics" }
511 -re ".*$gdb_prompt $" { fail "help maint print statistics" }
512 timeout { fail "(timeout) help maint print statistics" }
513 }
514
515send_gdb "help maint print objfiles\n"
516gdb_expect {
517 -re "Print dump of current object file definitions\\..*$gdb_prompt $"\
518 { pass "help maint print objfiles" }
519 -re ".*$gdb_prompt $" { fail "help maint print objfiles" }
520 timeout { fail "(timeout) help maint print objfiles" }
521 }
522
523send_gdb "help maint print psymbols\n"
524gdb_expect {
525 -re "Print dump of current partial symbol definitions\\.\r\nEntries in the partial symbol table are dumped to file OUTFILE\\.\r\nIf a SOURCE file is specified, dump only that file's partial symbols\\..*$gdb_prompt $"\
526 { pass "help maint print psymbols" }
527 -re ".*$gdb_prompt $" { fail "help maint print psymbols" }
528 timeout { fail "(timeout) help maint print psymbols" }
529 }
530
531send_gdb "help maint print msymbols\n"
532gdb_expect {
533 -re "Print dump of current minimal symbol definitions\\.\r\nEntries in the minimal symbol table are dumped to file OUTFILE\\.\r\nIf a SOURCE file is specified, dump only that file's minimal symbols\\..*$gdb_prompt $"\
534 { pass "help maint print msymbols" }
535 -re ".*$gdb_prompt $" { fail "help maint print msymbols" }
536 timeout { fail "(timeout) help maint print msymbols" }
537 }
538
539send_gdb "help maint print symbols\n"
540gdb_expect {
541 -re "Print dump of current symbol definitions\\.\r\nEntries in the full symbol table are dumped to file OUTFILE\\.\r\nIf a SOURCE file is specified, dump only that file's symbols\\..*$gdb_prompt $"\
542 { pass "help maint print symbols" }
543 -re ".*$gdb_prompt $" { fail "help maint print symbols" }
544 timeout { fail "(timeout) help maint print symbols" }
545 }
546
547
548send_gdb "help maint print type\n"
549gdb_expect {
550 -re "Print a type chain for a given symbol\\.\r\nFor each node in a type chain, print the raw data for each member of\r\nthe type structure, and the interpretation of the data\\..*$gdb_prompt $"\
551 { pass "help maint print type" }
552 -re ".*$gdb_prompt $" { fail "help maint print type" }
553 timeout { fail "(timeout) help maint print type" }
554 }
555
a0b3c4fd
JM
556if [istarget "hppa*-*-*"] {
557 send_gdb "help maint print unwind\n"
558 gdb_expect {
559 -re "Print unwind table entry at given address\\..*$gdb_prompt $"\
560 { pass "help maint print unwind" }
561 -re ".*$gdb_prompt $" { fail "help maint print unwind" }
562 timeout { fail "(timeout) help maint print unwind" }
563 }
564}
c906108c
SS
565
566send_gdb "help maint info sections\n"
567gdb_expect {
568 -re "List the BFD sections of the exec and core files\\..*$gdb_prompt $"\
569 { pass "help maint info sections" }
570 -re ".*$gdb_prompt $" { fail "help maint info sections" }
571 timeout { fail "(timeout) help maint info sections" }
572 }
573
574
575send_gdb "help maint info breakpoints\n"
576gdb_expect {
577-re "Status of all breakpoints, or breakpoint number NUMBER.*$gdb_prompt $" { pass "help maint info breakpoints" }
578 -re ".*$gdb_prompt $" { fail "help maint info breakpoints" }
579 timeout { fail "(timeout) help maint info breakpoints" }
580 }
581
582#send_gdb "help maint info breakpoints\n"
583#expect {
584# -re "Status of all breakpoints, or breakpoint number NUMBER\\.\[ \r\n\t\]+The \"Type\" column indicates one of:\[ \r\n\t\]+breakpoint\[ \t\]+- normal breakpoint\[ \r\n\t\]+watchpoint\[ \t\]+- watchpoint\[ \r\n\t\]+longjmp\[ \t\]+- internal breakpoint used to step through longjmp\\(\\)\[ \r\n\t\]+longjmp resume - internal breakpoint at the target of longjmp\\(\\)\[ \r\n\t\]+until\[ \t\]+- internal breakpoint used by the \"until\" command\[ \r\n\t\]+finish\[ \t\]+- internal breakpoint used by the \"finish\" command\[ \r\n\t\]+The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\[ \r\n\t\]+the disposition of the breakpoint after it gets hit\\. \"dis\" means that the\[ \r\n\t\]+breakpoint will be disabled\\. The \"Address\" and \"What\" columns indicate the\[ \r\n\t\]+address and file.line number respectively\\.\[ \r\n\t\]+Convenience variable \".*\" and default examine address for \"x\"\[ \r\n\t\]+are set to the address of the last breakpoint listed\\.\[ \r\n\t\]+Convenience variable \".bpnum\" contains the number of the last\[ \r\n\t\]+breakpoint set\\..*$gdb_prompt $"\
585# { pass "help maint info breakpoints" }
586# -re ".*$gdb_prompt $" { fail "help maint info breakpoints" }
587# timeout { fail "(timeout) help maint info breakpoints" }
588# }
589
590send_gdb "help maint info\n"
591gdb_expect {
592 -re "Commands for showing internal info about the program being debugged.*unambiguous\\..*$gdb_prompt $"\
593 { pass "help maint info" }
594 -re ".*$gdb_prompt $" { fail "help maint info" }
595 timeout { fail "(timeout) help maint info" }
596 }
597
598send_gdb "help maint print\n"
599gdb_expect {
3e6c8688 600 -re "Maintenance command for printing GDB internal state\\.\[\r\n\]+List of maintenance print subcommands:\[\r\n\]+maintenance print architecture -- Print the internal architecture configuration.*maintenance print msymbols -- Print dump of current minimal symbol definitions.*maintenance print objfiles -- Print dump of current object file definitions.*maintenance print psymbols -- Print dump of current partial symbol definitions.*maintenance print statistics -- Print statistics about internal gdb state.*maintenance print symbols -- Print dump of current symbol definitions.*maintenance print type -- Print a type chain for a given symbol.*Type .help maintenance print. followed by maintenance print subcommand name for full documentation\\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\\..*$gdb_prompt $"\
c906108c
SS
601 { pass "help maint print" }
602 -re ".*$gdb_prompt $" { fail "help maint print" }
603 timeout { fail "(timeout) help maint print" }
604 }
605
606send_gdb "help maint\n"
607gdb_expect {
608 -re "Commands for use by GDB maintainers\\.\[\r\n\]+Includes commands to dump specific internal GDB structures in\[\r\n\]+a human readable form, to cause GDB to deliberately dump core,\[\r\n\]+to test internal functions such as the C\\+\\+ demangler, etc\\..*Type.*help maintenance.*followed by maintenance subcommand name for full documentation\\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\\..*$gdb_prompt $"\
609 { pass "help maint" }
610 -re ".*$gdb_prompt $" { fail "help maint" }
611 timeout { fail "(timeout) help maint" }
612 }
613
614#set oldtimeout $timeout
615#set timeout [expr $timeout + 300]
616
93076499
ND
617if [ishost *cygwin*] {
618 setup_xfail "*-*-*"
619}
c906108c
SS
620send_gdb "maint dump-me\n"
621gdb_expect {
622 -re "Should GDB dump core.*\\(y or n\\) $"\
623 { send_gdb "n\n"
624 gdb_expect {
625 -re ".*$gdb_prompt $" { pass "maint dump-me" }
626 timeout { fail "(timeout) maint dump-me" }
627 }
628 }
629 -re ".*$gdb_prompt $" { fail "maint dump-me" }
630 timeout { fail "(timeout) maint dump-me" }
631 }
632
7be570e7
JM
633send_gdb "maint internal-error\n"
634gdb_expect {
635 -re "Continue this debugging session.*\\(y or n\\) $" {
636 send_gdb "y\n"
637 gdb_expect {
638 -re "Create a core file.*\\(y or n\\) $" {
639 send_gdb "n\n"
640 gdb_expect {
641 -re ".*$gdb_prompt $" {
642 pass "maint internal-error"
643 }
644 timeout {
645 fail "(timeout) maint internal-error"
646 }
647 }
648 }
649 -re ".*$gdb_prompt $" {
650 fail "maint internal-error"
651 }
652 timeout {
653 fail "(timeout) maint internal-error"
654 }
655 }
656 }
657 -re ".*$gdb_prompt $" {
658 fail "maint internal-error"
659 }
660 timeout {
661 fail "(timeout) maint internal-error"
662 }
663}
664
c906108c
SS
665#set timeout $oldtimeout
666
667
668gdb_exit
669return 0
This page took 0.185513 seconds and 4 git commands to generate.