]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/maint.exp
test suite update - gdb.base/[efg]
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / maint.exp
CommitLineData
28e7fd62 1# Copyright 1998-2013 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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 15
c906108c
SS
16# This file was written by Elena Zannoni (ezannoni@cygnus.com)
17
18# this file tests maintenance commands and help on those.
19
20# source file used is break.c
21
22
7d0c9981
DE
23#maintenance check-psymtabs -- Check consistency of psymtabs vs symtabs
24#maintenance check-symtabs -- Check consistency of symtabs
25#maintenance expand-symtabs -- Expand symtabs matching a file regexp
4f337972
AC
26#maintenance set -- Set GDB internal variables used by the GDB maintainer
27#maintenance show -- Show GDB internal variables used by the GDB maintainer
c906108c
SS
28#maintenance demangle -- Demangle a C++ mangled name
29#maintenance dump-me -- Get fatal error; make debugger dump its core
30#maintenance print -- Maintenance command for printing GDB internal state
31#maintenance info -- Commands for showing internal info about the program being debugged
7be570e7 32#maintenance internal-error -- Give GDB an internal error.
c906108c 33#
00905d52 34#maintenance print dummy-frames -- Print the dummy frame stack
c906108c
SS
35#maintenance print statistics -- Print statistics about internal gdb state
36#maintenance print objfiles -- Print dump of current object file definitions
37#maintenance print psymbols -- Print dump of current partial symbol definitions
38#maintenance print msymbols -- Print dump of current minimal symbol definitions
39#maintenance print symbols -- Print dump of current symbol definitions
40#maintenance print type -- Print a type chain for a given symbol
41#maintenance print unwind -- Print unwind table entry at given address
42#
43#
44#maintenance info sections -- List the BFD sections of the exec and core files
45#maintenance info breakpoints -- Status of all breakpoints
46#
47
48
49
c906108c
SS
50set testfile "break"
51set srcfile ${testfile}.c
a1dea79a 52set srcfile1 ${testfile}1.c
c906108c 53set binfile ${objdir}/${subdir}/${testfile}
a1dea79a 54
fc91c6c2 55if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}0.o" object {debug nowarnings}] != "" } {
b60f0898
JB
56 untested maint.exp
57 return -1
a1dea79a
FF
58}
59
fc91c6c2 60if { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${binfile}1.o" object {debug nowarnings}] != "" } {
b60f0898
JB
61 untested maint.exp
62 return -1
a1dea79a
FF
63}
64
fc91c6c2 65if { [gdb_compile "${binfile}0.o ${binfile}1.o" "${binfile}" executable {debug nowarnings}] != "" } {
b60f0898
JB
66 untested maint.exp
67 return -1
c906108c
SS
68}
69
70
71gdb_exit
72gdb_start
73gdb_reinitialize_dir $srcdir/$subdir
b78974c3
PA
74
75# The commands we test here produce many lines of output; disable "press
76# <return> to continue" prompts.
77gdb_test_no_output "set height 0"
78
79# Tests that require that no program is running
80
81gdb_file_cmd ${binfile}
82
83# Test for a regression where this command would internal-error if the
84# program wasn't running.
85gdb_test "maint print registers" "Name.*Nr.*Rel.*Offset.*Size.*Type.*"
86
7d0c9981
DE
87# Test "mt expand-symtabs" here as it's easier to verify before we
88# run the program.
89gdb_test_no_output "mt set per on" "mt set per on for expand-symtabs"
90gdb_test_multiple "mt expand-symtabs $subdir/break\[.\]c$" \
91 "mt expand-symtabs" {
e19d3afb
DE
92 -re "#primary symtabs: (1|2) \\(\[+\](1|2)\\),.*$gdb_prompt $" {
93 # This should expand one or at most two primary symtabs.
94 # "Normally" it will expand just the one for break.c, but if the
95 # file is compiled with -fdebug-types-section then a second primary
96 # symtab for break.c will be created for any types.
7d0c9981
DE
97 pass "mt expand-symtabs"
98 }
99 }
100gdb_test "mt set per off" ".*" "mt set per off for expand-symtabs"
101
b78974c3
PA
102# Tests that can or should be done with a running program
103
c906108c
SS
104gdb_load ${binfile}
105
106if ![runto_main] then {
107 perror "tests suppressed"
108}
109
27210e12
DE
110# If we're using .gdb_index there will be no psymtabs.
111set have_gdb_index 0
112gdb_test_multiple "maint info sections .gdb_index" "check for .gdb_index" {
113 -re ": .gdb_index.*$gdb_prompt $" {
114 set have_gdb_index 1
115 }
116 -re ".*$gdb_prompt $" {
117 ;# Nothing to do, present to avoid a FAIL.
118 }
119}
c906108c 120
c906108c
SS
121#
122# this command does not produce any output
123# unless there is some problem with the symtabs and psymtabs
124# so that branch will really never be covered in this tests here!!
125#
126
a0b3c4fd
JM
127# guo: on linux this command output is huge. for some reason splitting up
128# the regexp checks works.
129#
7d0c9981 130send_gdb "maint check-psymtabs\n"
c906108c 131gdb_expect {
7d0c9981 132 -re "^maint check-psymtabs" {
65731a6b
MS
133 gdb_expect {
134 -re "$gdb_prompt $" {
7d0c9981 135 pass "maint check-psymtabs"
a0b3c4fd 136 }
7d0c9981 137 timeout { fail "(timeout) maint check-psymtabs" }
a0b3c4fd 138 }
65731a6b 139 }
7d0c9981
DE
140 -re ".*$gdb_prompt $" { fail "maint check-psymtabs" }
141 timeout { fail "(timeout) maint check-psymtabs" }
65731a6b 142}
c906108c 143
7d0c9981
DE
144# This command does not produce any output unless there is some problem
145# with the symtabs, so that branch will really never be covered in the
146# tests here!!
147gdb_test_no_output "maint check-symtabs"
148
bd712aed 149gdb_test_no_output "maint set per-command on"
c906108c 150
bd712aed
DE
151gdb_test "maint set per-command off" \
152 "Command execution time: \[0-9.\]+ \\(cpu\\), \[0-9.\]+ \\(wall\\)\[\r\n\]+Space used: $decimal \\(\\+$decimal for this command\\)\[\r\n\]+#symtabs: $decimal \\(\\+$decimal\\), #primary symtabs: $decimal \\(\\+$decimal\\), #blocks: $decimal \\(\\+$decimal\\)"
c906108c 153
65731a6b
MS
154gdb_test "maint demangle" \
155 "\"maintenance demangle\" takes an argument to demangle\\."
c906108c 156
65731a6b 157gdb_test "maint demangle main" "Can't demangle \"main\""
c906108c 158
c906108c 159
c906108c 160
dbdfa66c
CV
161# The timeout value is raised, because printing all the symbols and
162# statistical information about Cygwin and Windows libraries takes a lot
cb80163c
DE
163# of time.
164if [istarget "*-*-cygwin*"] {
165 set oldtimeout $timeout
166 set timeout [expr $timeout + 500]
167}
c906108c 168
55b7ce7f
UW
169send_gdb "maint print statistics\n"
170gdb_expect {
e4a48d9d 171 -re "Statistics for\[^\n\r\]*break\[^\n\r\]*:\r\n Number of \"minimal\" symbols read: $decimal\r\n( Number of \"partial\" symbols read: $decimal\r\n)? Number of \"full\" symbols read: $decimal\r\n Number of \"types\" defined: $decimal\r\n( Number of psym tables \\(not yet expanded\\): $decimal\r\n)?( Number of read CUs: $decimal\r\n Number of unread CUs: $decimal\r\n)? Number of symbol tables: $decimal\r\n Number of symbol tables with line tables: $decimal\r\n Number of symbol tables with blockvectors: $decimal\r\n Total memory used for objfile obstack: $decimal\r\n Total memory used for BFD obstack: $decimal\r\n Total memory used for psymbol cache: $decimal\r\n Total memory used for macro cache: $decimal\r\n Total memory used for file name cache: $decimal\r\n" {
55b7ce7f
UW
172 gdb_expect {
173 -re "$gdb_prompt $" {
174 pass "maint print statistics"
175 }
176 timeout { fail "(timeout) maint print statistics" }
177 }
65731a6b 178 }
55b7ce7f
UW
179 -re ".*$gdb_prompt $" { fail "maint print statistics" }
180 timeout { fail "(timeout) maint print statistics" }
65731a6b 181}
c906108c 182
00905d52 183# There aren't any ...
27d3a1a2 184gdb_test_no_output "maint print dummy-frames"
00905d52 185
c906108c 186send_gdb "maint print objfiles\n"
adf40b2e 187
c906108c 188# To avoid timeouts, we avoid expects with many .* patterns that match
adf40b2e
JM
189# many lines. Instead, we keep track of which milestones we've seen
190# in the output, and stop when we've seen all of them.
191
192set header 0
193set psymtabs 0
194set symtabs 0
195set keep_looking 1
196
197while {$keep_looking} {
198 gdb_expect {
199
03dd63aa 200 -re ".*Object file.*break($EXEEXT)?: Objfile at $hex, bfd at $hex, \[0-9\]* minsyms\[\r\t \]+\n" { set header 1 }
adf40b2e
JM
201 -re ".*Psymtabs:\[\r\t \]+\n" { set psymtabs 1 }
202 -re ".*Symtabs:\[\r\t \]+\n" { set symtabs 1 }
203
204 -re ".*$gdb_prompt $" {
205 set keep_looking 0
206 }
207 timeout {
208 fail "(timeout) maint print objfiles"
209 set keep_looking 0
210 }
211 }
c906108c 212}
adf40b2e
JM
213
214proc maint_pass_if {val name} {
215 if $val { pass $name } else { fail $name }
c906108c
SS
216}
217
adf40b2e 218maint_pass_if $header "maint print objfiles: header"
27210e12
DE
219if { ! $have_gdb_index } {
220 maint_pass_if $psymtabs "maint print objfiles: psymtabs"
221}
adf40b2e
JM
222maint_pass_if $symtabs "maint print objfiles: symtabs"
223
65731a6b
MS
224gdb_test "maint print psymbols" \
225 "print-psymbols takes an output file name and optional symbol file name" \
226 "maint print psymbols w/o args"
227
27210e12
DE
228if { ! $have_gdb_index } {
229 send_gdb "maint print psymbols psymbols_output ${srcdir}/${subdir}/${srcfile}\n"
230 gdb_expect {
231 -re "^maint print psymbols psymbols_output \[^\n\]*\r\n$gdb_prompt $" {
232 send_gdb "shell ls psymbols_output\n"
233 gdb_expect {
234 -re "psymbols_output\r\n$gdb_prompt $" {
235 # We want this grep to be as specific as possible,
236 # so it's less likely to match symbol file names in
237 # psymbols_output. Yes, this actually happened;
238 # poor expect got tons of output, and timed out
239 # trying to match it. --- Jim Blandy <jimb@cygnus.com>
240 send_gdb "shell grep 'main.*function' psymbols_output\n"
241 gdb_expect {
242 -re ".main., function, $hex.*$gdb_prompt $" {
243 pass "maint print psymbols 1"
244 }
245 -re ".*main. .., function, $hex.*$gdb_prompt $" {
246 pass "maint print psymbols 2"
247 }
248 -re ".*$gdb_prompt $" { fail "maint print psymbols" }
249 timeout { fail "(timeout) maint print psymbols" }
65731a6b 250 }
27210e12 251 gdb_test "shell rm -f psymbols_output" ".*"
65731a6b 252 }
27210e12
DE
253 -re ".*$gdb_prompt $" { fail "maint print psymbols" }
254 timeout { fail "(timeout) maint print psymbols" }
65731a6b 255 }
65731a6b 256 }
27210e12
DE
257 -re ".*$gdb_prompt $" { fail "maint print psymbols" }
258 timeout { fail "(timeout) maint print psymbols" }
65731a6b 259 }
65731a6b 260}
c906108c 261
65731a6b
MS
262gdb_test "maint print msymbols" \
263 "print-msymbols takes an output file name and optional symbol file name" \
264 "maint print msymbols w/o args"
c906108c 265
c906108c 266
3bcbaac5 267send_gdb "maint print msymbols msymbols_output ${binfile}\n"
c906108c 268gdb_expect {
65731a6b
MS
269 -re "^maint print msymbols msymbols_output \[^\n\]*\r\n$gdb_prompt $" {
270 send_gdb "shell ls msymbols_output\n"
271 gdb_expect {
272 -re "msymbols_output\r\n$gdb_prompt $" {
273 send_gdb "shell grep factorial msymbols_output\n"
274 gdb_expect {
efd11a33 275 -re "\\\[ *$decimal\\\] \[tT\]\[ \t\]+$hex \\.?factorial.*$gdb_prompt $" {
65731a6b
MS
276 pass "maint print msymbols"
277 }
278 -re ".*$gdb_prompt $" { fail "maint print msymbols" }
279 timeout { fail "(timeout) maint print msymbols" }
280 }
f6978de9 281 gdb_test "shell rm -f msymbols_output" ".*"
65731a6b
MS
282 }
283 -re ".*$gdb_prompt $" { fail "maint print msymbols" }
284 timeout { fail "(timeout) maint print msymbols" }
285 }
286 }
287 -re ".*$gdb_prompt $" { fail "maint print msymbols" }
288 timeout { fail "(timeout) maint print msymbols" }
289}
c906108c 290
dbdfa66c
CV
291# Check that maint print msymbols allows relative pathnames
292set mydir [pwd]
65731a6b
MS
293gdb_test "cd ${objdir}" \
294 "Working directory [string_to_regexp ${objdir}]\..*" \
295 "cd to objdir"
296
dbdfa66c
CV
297gdb_test_multiple "maint print msymbols msymbols_output2 ${subdir}/${testfile}" "maint print msymbols" {
298 -re "^maint print msymbols msymbols_output2 \[^\n\]*\r\n$gdb_prompt $" {
299 gdb_test_multiple "shell ls msymbols_output2" "maint print msymbols" {
300 -re "msymbols_output2\r\n$gdb_prompt $" {
301 gdb_test_multiple "shell grep factorial msymbols_output2" "maint print msymbols" {
efd11a33 302 -re "\\\[ *$decimal\\\] \[tT\]\[ \t\]+$hex \\.?factorial.*$gdb_prompt $" {
dbdfa66c
CV
303 pass "maint print msymbols"
304 }
305 -re ".*$gdb_prompt $" {
306 fail "maint print msymbols"
307 }
308 timeout {
309 fail "(timeout) maint print msymbols"
310 }
311 }
f6978de9 312 gdb_test "shell rm -f msymbols_output2" ".*"
dbdfa66c
CV
313 }
314 -re ".*$gdb_prompt $" {
315 fail "maint print msymbols"
316 }
317 timeout {
318 fail "(timeout) maint print msymbols"
319 }
320 }
321 }
322 -re ".*$gdb_prompt $" {
323 fail "maint print msymbols"
324 }
325 timeout {
326 fail "(timeout) maint print msymbols"
327 }
328}
65731a6b
MS
329gdb_test "cd ${mydir}" \
330 "Working directory [string_to_regexp ${mydir}]\..*" \
331 "cd to mydir"
332
333gdb_test "maint print symbols" \
334 "Arguments missing: an output file name and an optional symbol file name" \
335 "maint print symbols w/o args"
c906108c 336
c906108c 337
3bcbaac5
DJ
338# Request symbols for one particular source file so that we don't try to
339# dump the symbol information for the entire C library - over 500MB nowadays
340# for GNU libc.
adf40b2e 341
3bcbaac5 342send_gdb "maint print symbols symbols_output ${srcdir}/${subdir}/${srcfile}\n"
c906108c 343gdb_expect {
65731a6b
MS
344 -re "^maint print symbols symbols_output \[^\n\]*\r\n$gdb_prompt $" {
345 send_gdb "shell ls symbols_output\n"
346 gdb_expect {
347 -re "symbols_output\r\n$gdb_prompt $" {
348 # See comments for `maint print psymbols'.
349 send_gdb "shell grep 'main(.*block' symbols_output\n"
350 gdb_expect {
351 -re "int main\\(int, char \\*\\*, char \\*\\*\\); block.*$gdb_prompt $" {
352 pass "maint print symbols"
353 }
354 -re ".*$gdb_prompt $" { fail "maint print symbols" }
355 timeout { fail "(timeout) maint print symbols" }
356 }
f6978de9 357 gdb_test "shell rm -f symbols_output" ".*"
65731a6b
MS
358 }
359 -re ".*$gdb_prompt $" { fail "maint print symbols" }
360 timeout { fail "(timeout) maint print symbols" }
361 }
362 }
363 -re ".*$gdb_prompt $" { fail "maint print symbols" }
364 timeout { fail "(timeout) maint print symbols" }
365}
c906108c 366
b4ba55a1
JB
367set msg "maint print type"
368gdb_test_multiple "maint print type argc" $msg {
369 -re "type node $hex\r\nname .int. \\($hex\\)\r\ntagname .<NULL>. \\($hex\\)\r\ncode $hex \\(TYPE_CODE_INT\\)\r\nlength \[24\]\r\nobjfile $hex\r\ntarget_type $hex\r\npointer_type $hex\r\nreference_type $hex\r\ntype_chain $hex\r\ninstance_flags $hex\r\nflags\r\nnfields 0 $hex\r\nvptr_basetype $hex\r\nvptr_fieldno -1\r\n$gdb_prompt $" {
370 pass $msg
371 }
372}
c906108c 373
a0b3c4fd
JM
374if [istarget "hppa*-*-11*"] {
375 setup_xfail hppa*-*-*11* CLLbs14860
65731a6b
MS
376 gdb_test_multiple "maint print unwind &main" "maint print unwind" {
377 -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 $" {
378 pass "maint print unwind"
379 }
380 -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 $" {
381 xfail "maint print unwind"
382 }
a0b3c4fd
JM
383 }
384}
c906108c
SS
385
386set oldtimeout $timeout
387set timeout [expr $timeout + 300]
388
389# It'd be nice to check for every possible section. However, that's
390# problematic, since the relative ordering wanders from release to
391# release of the compilers. Instead, we'll just check for two
392# sections which appear to always come out in the same relative
393# order. (If that changes, then we should just check for one
394# section.)
395#
396# And by the way: This testpoint will break for PA64, where a.out's
397# are ELF files.
293e2f9e
DJ
398
399# Standard GNU names.
400set text_section ".text"
401set data_section ".data"
402
65731a6b
MS
403gdb_test_multiple "maint info sections" "maint info sections" {
404 -re "Exec file:\r\n.*break($EXEEXT)?., file type.*ER_RO.*$gdb_prompt $" {
405 # Looks like RealView which uses different section names.
406 set text_section ER_RO
407 set data_section ER_RW
408 pass "maint info sections"
409 }
d93f7b5c
YQ
410 -re "Exec file:\r\n.*break($EXEEXT)?., file type.*neardata.*$gdb_prompt $" {
411 # c6x doesn't have .data section. It has .neardata and .fardata section.
412 set data_section ".neardata"
413 pass "maint info sections"
414 }
65731a6b
MS
415 -re "Exec file:\r\n.*break($EXEEXT)?., file type.*$gdb_prompt $" {
416 pass "maint info sections"
417 }
418}
c906108c 419
8ddad156
MS
420# Test for new option: maint info sections <section name>
421# If you don't have a .text section, this will require tweaking.
65731a6b
MS
422
423gdb_test_multiple "maint info sections $text_section" \
424 "maint info sections .text" {
425 -re ".* \\.bss .*$gdb_prompt $" {
426 fail "maint info sections .text"
427 }
428 -re ".* $data_section .*$gdb_prompt $" {
429 fail "maint info sections .text"
430 }
431 -re ".* $text_section .*$gdb_prompt $" {
432 pass "maint info sections .text"
433 }
434 }
8ddad156
MS
435
436# Test for new option: CODE section flag
437# If your data section is tagged CODE, xfail this test.
65731a6b
MS
438
439gdb_test_multiple "maint info sections CODE" "maint info sections CODE" {
293e2f9e
DJ
440 -re ".* $data_section .*$gdb_prompt $" { fail "maint info sections CODE" }
441 -re ".* $text_section .*$gdb_prompt $" { pass "maint info sections CODE" }
8ddad156
MS
442}
443
444# Test for new option: DATA section flag
445# If your text section is tagged DATA, xfail this test.
dbdfa66c 446#
58e8570a 447# The "maint info sections DATA" test is marked for XFAIL on Windows,
dbdfa66c
CV
448# because Windows has text sections marked DATA.
449setup_xfail "*-*-*cygwin*"
58e8570a 450setup_xfail "*-*-*mingw*"
65731a6b
MS
451
452gdb_test_multiple "maint info sections DATA" "maint info sections DATA" {
293e2f9e
DJ
453 -re ".* $text_section .*$gdb_prompt $" { fail "maint info sections DATA" }
454 -re ".* $data_section .*$gdb_prompt $" { pass "maint info sections DATA" }
759f0f0b 455 -re ".* .rodata .*$gdb_prompt $" { pass "maint info sections DATA" }
8ddad156
MS
456}
457
a1dea79a
FF
458set bp_location6 [gdb_get_line_number "set breakpoint 6 here"]
459
65731a6b
MS
460gdb_test_multiple "maint info breakpoints" "maint info breakpoints" {
461 -re "Num\[ \t\]+Type\[ \t\]+Disp\[ \t\]+Enb\[ \t\]+Address\[ \t\]+What\r\n1\[ \t\]+breakpoint\[ \t\]+keep\[ \t\]+y\[ \t\]+$hex\[ \t\]+in main at.*break.c:$bp_location6 inf 1\r\n\[ \t\]+breakpoint already hit 1 time\r\n.*$gdb_prompt $" {
462 pass "maint info breakpoints"
463 }
464 -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:$bp_location6 sspace 1\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 $" {
465 pass "maint info breakpoints (with shlib events)"
466 }
c906108c
SS
467}
468
65731a6b
MS
469gdb_test "maint print" \
470 "\"maintenance print\" must be followed by the name of a print command\\.\r\nList.*unambiguous\\..*" \
471 "maint print w/o args"
c906108c 472
65731a6b
MS
473gdb_test "maint info" \
474 "\"maintenance info\" must be followed by the name of an info command\\.\r\nList.*unambiguous\\..*" \
475 "maint info w/o args"
c906108c 476
65731a6b
MS
477gdb_test "maint" \
478 "\"maintenance\" must be followed by the name of a maintenance command\\.\r\nList.*unambiguous\\..*" \
479 "maint w/o args"
c906108c
SS
480
481set timeout $oldtimeout
482
483#============test help on maint commands
484
65731a6b 485gdb_test "help maint" \
8d324e83 486 "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../ObjC demangler, etc\\..*List of maintenance subcommands:.*maintenance info.*maintenance internal-error.*maintenance print.*maintenance set.*maintenance show.*Type.*help maintenance.*followed by maintenance subcommand name for full documentation\\..*Command name abbreviations are allowed if unambiguous\\..*"
c906108c 487
65731a6b
MS
488gdb_test "help maint info" \
489 "Commands for showing internal info about the program being debugged.*unambiguous\\..*"
c906108c 490
d8295fe9
VP
491test_prefix_command_help {"maint print" "maintenance print"} {
492 "Maintenance command for printing GDB internal state\\.\[\r\n\]+"
493}
c906108c 494
d8295fe9
VP
495test_prefix_command_help {"maint" "maintenance"} {
496 "Commands for use by GDB maintainers\\.\[\r\n\]+"
497 "Includes commands to dump specific internal GDB structures in\[\r\n\]+"
498 "a human readable form, to cause GDB to deliberately dump core,\[\r\n\]+"
499 "to test internal functions such as the C\\+\\+/ObjC demangler, etc\\.\[\r\n\]+"
500}
c906108c
SS
501
502#set oldtimeout $timeout
503#set timeout [expr $timeout + 300]
504
65731a6b
MS
505gdb_test_multiple "maint dump-me" "maint dump-me" {
506 -re "Should GDB dump core.*\\(y or n\\) $" {
507 gdb_test "n" ".*" "maint dump-me"
508 }
9bdd0636
YQ
509 -re "Undefined maintenance command: .*$gdb_prompt $" {
510 # Command 'maint dump-me' is registered on non-win32 host.
511 unsupported "maint dump-me"
512 }
65731a6b 513}
c906108c 514
7be570e7 515send_gdb "maint internal-error\n"
039cf96d
AC
516gdb_expect {
517 -re "A problem internal to GDB has been detected" {
518 pass "maint internal-error"
519 if [gdb_internal_error_resync] {
520 pass "internal-error resync"
521 } else {
522 fail "internal-error resync"
7be570e7
JM
523 }
524 }
525 -re ".*$gdb_prompt $" {
526 fail "maint internal-error"
039cf96d 527 untested "internal-error resync"
7be570e7
JM
528 }
529 timeout {
039cf96d
AC
530 fail "maint internal-error (timeout)"
531 untested "internal-error resync"
7be570e7
JM
532 }
533}
534
c906108c
SS
535#set timeout $oldtimeout
536
537
538gdb_exit
539return 0