configure uses incorrect link order when testing libpython
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / maint.exp
CommitLineData
e2882c85 1# Copyright 1998-2018 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 dump-me -- Get fatal error; make debugger dump its core
29#maintenance print -- Maintenance command for printing GDB internal state
30#maintenance info -- Commands for showing internal info about the program being debugged
7be570e7 31#maintenance internal-error -- Give GDB an internal error.
c906108c 32#
00905d52 33#maintenance print dummy-frames -- Print the dummy frame stack
c906108c
SS
34#maintenance print statistics -- Print statistics about internal gdb state
35#maintenance print objfiles -- Print dump of current object file definitions
36#maintenance print psymbols -- Print dump of current partial symbol definitions
37#maintenance print msymbols -- Print dump of current minimal symbol definitions
38#maintenance print symbols -- Print dump of current symbol definitions
39#maintenance print type -- Print a type chain for a given symbol
40#maintenance print unwind -- Print unwind table entry at given address
41#
42#
43#maintenance info sections -- List the BFD sections of the exec and core files
44#maintenance info breakpoints -- Status of all breakpoints
45#
46
47
48
f8b41b00 49standard_testfile break.c break1.c
a1dea79a 50
5b362f04 51if {[prepare_for_testing "failed to prepare" $testfile \
f8b41b00 52 [list $srcfile $srcfile2] {debug nowarnings}]} {
f8b41b00 53 return -1
c906108c
SS
54}
55
b78974c3
PA
56# The commands we test here produce many lines of output; disable "press
57# <return> to continue" prompts.
58gdb_test_no_output "set height 0"
59
60# Tests that require that no program is running
61
62gdb_file_cmd ${binfile}
63
64# Test for a regression where this command would internal-error if the
65# program wasn't running.
66gdb_test "maint print registers" "Name.*Nr.*Rel.*Offset.*Size.*Type.*"
67
7d0c9981
DE
68# Test "mt expand-symtabs" here as it's easier to verify before we
69# run the program.
70gdb_test_no_output "mt set per on" "mt set per on for expand-symtabs"
71gdb_test_multiple "mt expand-symtabs $subdir/break\[.\]c$" \
72 "mt expand-symtabs" {
43f3e411 73 -re "#compunits: (1|2) \\(\[+\](0|1|2)\\),.*$gdb_prompt $" {
bf6d8a91
TT
74 # This should expand at most two primary symtabs.
75 # "Normally" it will not expand any, because the symtab
76 # holding "main" will already have been expanded, but if the
e19d3afb
DE
77 # file is compiled with -fdebug-types-section then a second primary
78 # symtab for break.c will be created for any types.
7d0c9981
DE
79 pass "mt expand-symtabs"
80 }
81 }
82gdb_test "mt set per off" ".*" "mt set per off for expand-symtabs"
83
b78974c3
PA
84# Tests that can or should be done with a running program
85
c906108c
SS
86gdb_load ${binfile}
87
88if ![runto_main] then {
89 perror "tests suppressed"
90}
91
927aa2e7 92# If we're using .gdb_index or .debug_names there will be no psymtabs.
27210e12 93set have_gdb_index 0
927aa2e7
JK
94gdb_test_multiple "maint info sections .gdb_index .debug_names" "check for .gdb_index" {
95 -re ": \\.gdb_index .*\r\n$gdb_prompt $" {
96 set have_gdb_index 1
97 }
98 -re ": \\.debug_names .*\r\n$gdb_prompt $" {
27210e12
DE
99 set have_gdb_index 1
100 }
101 -re ".*$gdb_prompt $" {
102 ;# Nothing to do, present to avoid a FAIL.
103 }
104}
c906108c 105
c906108c
SS
106#
107# this command does not produce any output
108# unless there is some problem with the symtabs and psymtabs
109# so that branch will really never be covered in this tests here!!
110#
111
a0b3c4fd
JM
112# guo: on linux this command output is huge. for some reason splitting up
113# the regexp checks works.
114#
7d0c9981 115send_gdb "maint check-psymtabs\n"
c906108c 116gdb_expect {
7d0c9981 117 -re "^maint check-psymtabs" {
65731a6b
MS
118 gdb_expect {
119 -re "$gdb_prompt $" {
7d0c9981 120 pass "maint check-psymtabs"
a0b3c4fd 121 }
7d0c9981 122 timeout { fail "(timeout) maint check-psymtabs" }
a0b3c4fd 123 }
65731a6b 124 }
7d0c9981
DE
125 -re ".*$gdb_prompt $" { fail "maint check-psymtabs" }
126 timeout { fail "(timeout) maint check-psymtabs" }
65731a6b 127}
c906108c 128
7d0c9981
DE
129# This command does not produce any output unless there is some problem
130# with the symtabs, so that branch will really never be covered in the
131# tests here!!
132gdb_test_no_output "maint check-symtabs"
133
b8b8facf 134# Test per-command stats.
bd712aed 135gdb_test_no_output "maint set per-command on"
b8b8facf 136gdb_test "pwd" \
43f3e411 137 "Command execution time: \[0-9.\]+ \\(cpu\\), \[0-9.\]+ \\(wall\\)\[\r\n\]+Space used: $decimal \\(\\+$decimal for this command\\)\[\r\n\]+#symtabs: $decimal \\(\\+$decimal\\), #compunits: $decimal \\(\\+$decimal\\), #blocks: $decimal \\(\\+$decimal\\)"
b8b8facf 138gdb_test_no_output "maint set per-command off"
c906108c 139
dbdfa66c
CV
140# The timeout value is raised, because printing all the symbols and
141# statistical information about Cygwin and Windows libraries takes a lot
cb80163c
DE
142# of time.
143if [istarget "*-*-cygwin*"] {
144 set oldtimeout $timeout
145 set timeout [expr $timeout + 500]
146}
c906108c 147
55b7ce7f
UW
148send_gdb "maint print statistics\n"
149gdb_expect {
f8b41b00 150 -re "Statistics for\[^\n\r\]*maint\[^\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
151 gdb_expect {
152 -re "$gdb_prompt $" {
153 pass "maint print statistics"
154 }
155 timeout { fail "(timeout) maint print statistics" }
156 }
65731a6b 157 }
55b7ce7f
UW
158 -re ".*$gdb_prompt $" { fail "maint print statistics" }
159 timeout { fail "(timeout) maint print statistics" }
65731a6b 160}
c906108c 161
00905d52 162# There aren't any ...
27d3a1a2 163gdb_test_no_output "maint print dummy-frames"
00905d52 164
c906108c 165send_gdb "maint print objfiles\n"
adf40b2e 166
c906108c 167# To avoid timeouts, we avoid expects with many .* patterns that match
adf40b2e
JM
168# many lines. Instead, we keep track of which milestones we've seen
169# in the output, and stop when we've seen all of them.
170
171set header 0
172set psymtabs 0
173set symtabs 0
174set keep_looking 1
175
176while {$keep_looking} {
177 gdb_expect {
178
e48744a0
PA
179 -re "\r\n" {
180 set output $expect_out(buffer)
181 if {[regexp ".*Object file.*maint($EXEEXT)?: Objfile at ${hex}" $output]} {
182 set header 1
183 }
184 if {[regexp ".*Psymtabs:\[\r\t \]+\n" $output]} {
185 set psymtabs 1
186 }
187 if {[regexp ".*Symtabs:\[\r\t \]+\n" $output]} {
188 set symtabs 1
189 }
190 }
adf40b2e
JM
191
192 -re ".*$gdb_prompt $" {
193 set keep_looking 0
194 }
195 timeout {
196 fail "(timeout) maint print objfiles"
197 set keep_looking 0
198 }
199 }
c906108c 200}
adf40b2e
JM
201
202proc maint_pass_if {val name} {
203 if $val { pass $name } else { fail $name }
c906108c
SS
204}
205
adf40b2e 206maint_pass_if $header "maint print objfiles: header"
27210e12
DE
207if { ! $have_gdb_index } {
208 maint_pass_if $psymtabs "maint print objfiles: psymtabs"
209}
adf40b2e
JM
210maint_pass_if $symtabs "maint print objfiles: symtabs"
211
27210e12 212if { ! $have_gdb_index } {
f8b41b00 213 set psymbols_output [standard_output_file psymbols_output]
37539ebe 214 set psymbols_output_re [string_to_regexp $psymbols_output]
34c41c68
DE
215 set test_list [list \
216 "maint print psymbols -source" \
217 "maint print psymbols -source ${srcdir}/${subdir}/${srcfile} $psymbols_output" \
218 "maint print psymbols -pc" \
219 "maint print psymbols -pc main $psymbols_output"]
220 foreach { test_name command } $test_list {
221 send_gdb "$command\n"
222 gdb_expect {
223 -re "^maint print psymbols \[^\n\]*\r\n$gdb_prompt $" {
224 send_gdb "shell ls $psymbols_output\n"
27210e12 225 gdb_expect {
34c41c68
DE
226 -re "$psymbols_output_re\r\n$gdb_prompt $" {
227 # We want this grep to be as specific as possible,
228 # so it's less likely to match symbol file names in
229 # psymbols_output. Yes, this actually happened;
230 # poor expect got tons of output, and timed out
231 # trying to match it. --- Jim Blandy <jimb@cygnus.com>
232 send_gdb "shell grep 'main.*function' $psymbols_output\n"
233 gdb_expect {
234 -re ".main., function, $hex.*$gdb_prompt $" {
235 pass "$test_name 1"
236 }
237 -re ".*main. .., function, $hex.*$gdb_prompt $" {
238 pass "$test_name 2"
239 }
240 -re ".*$gdb_prompt $" { fail "$test_name" }
241 timeout { fail "$test_name (timeout)" }
242 }
243 gdb_test "shell rm -f $psymbols_output" ".*" \
244 "shell rm -f psymbols_output"
27210e12 245 }
34c41c68
DE
246 -re ".*$gdb_prompt $" { fail "$test_name" }
247 timeout { fail "$test_name (timeout)" }
65731a6b 248 }
65731a6b 249 }
34c41c68
DE
250 -re ".*$gdb_prompt $" { fail "$test_name" }
251 timeout { fail "$test_name (timeout)" }
65731a6b 252 }
65731a6b 253 }
65731a6b 254}
c906108c 255
c906108c 256
f8b41b00 257set msymbols_output [standard_output_file msymbols_output]
37539ebe 258set msymbols_output_re [string_to_regexp $msymbols_output]
34c41c68 259send_gdb "maint print msymbols -objfile ${binfile} $msymbols_output\n"
c906108c 260gdb_expect {
34c41c68 261 -re "^maint print msymbols \[^\n\]*\r\n$gdb_prompt $" {
f8b41b00 262 send_gdb "shell ls $msymbols_output\n"
65731a6b 263 gdb_expect {
37539ebe 264 -re "$msymbols_output_re\r\n$gdb_prompt $" {
f8b41b00 265 send_gdb "shell grep factorial $msymbols_output\n"
65731a6b 266 gdb_expect {
efd11a33 267 -re "\\\[ *$decimal\\\] \[tT\]\[ \t\]+$hex \\.?factorial.*$gdb_prompt $" {
65731a6b
MS
268 pass "maint print msymbols"
269 }
34c41c68
DE
270 -re ".*$gdb_prompt $" { fail "maint print msymbols" }
271 timeout { fail "maint print msymbols (timeout)" }
65731a6b 272 }
f8b41b00
TT
273 gdb_test "shell rm -f $msymbols_output" ".*" \
274 "shell rm -f msymbols_output"
65731a6b 275 }
34c41c68
DE
276 -re ".*$gdb_prompt $" { fail "maint print msymbols" }
277 timeout { fail "maint print msymbols (timeout)" }
65731a6b
MS
278 }
279 }
34c41c68
DE
280 -re ".*$gdb_prompt $" { fail "maint print msymbols" }
281 timeout { fail "maint print msymbols (timeout)" }
65731a6b 282}
c906108c 283
dbdfa66c
CV
284# Check that maint print msymbols allows relative pathnames
285set mydir [pwd]
08b3fe69
TT
286gdb_test "cd [standard_output_file {}]" \
287 "Working directory .*\..*" \
65731a6b
MS
288 "cd to objdir"
289
34c41c68
DE
290gdb_test_multiple "maint print msymbols -objfile ${testfile} msymbols_output2" "maint print msymbols" {
291 -re "^maint print msymbols \[^\n\]*\r\n$gdb_prompt $" {
dbdfa66c
CV
292 gdb_test_multiple "shell ls msymbols_output2" "maint print msymbols" {
293 -re "msymbols_output2\r\n$gdb_prompt $" {
107c2d62
LM
294 gdb_test "shell grep factorial msymbols_output2" \
295 "\\\[ *$decimal\\\] \[tT\]\[ \t\]+$hex \\.?factorial.*" \
296 "maint print msymbols"
297 gdb_test "shell rm -f msymbols_output2" ".*"
dbdfa66c 298 }
dbdfa66c
CV
299 }
300 }
dbdfa66c 301}
65731a6b
MS
302gdb_test "cd ${mydir}" \
303 "Working directory [string_to_regexp ${mydir}]\..*" \
304 "cd to mydir"
305
c906108c 306
3bcbaac5
DJ
307# Request symbols for one particular source file so that we don't try to
308# dump the symbol information for the entire C library - over 500MB nowadays
309# for GNU libc.
adf40b2e 310
f8b41b00 311set symbols_output [standard_output_file symbols_output]
37539ebe 312set symbols_output_re [string_to_regexp $symbols_output]
34c41c68
DE
313set test_list [list \
314 "maint print symbols -source" \
315 "maint print symbols -source ${srcdir}/${subdir}/${srcfile} $symbols_output" \
316 "maint print symbols -pc" \
317 "maint print symbols -pc main $symbols_output"]
318foreach { test_name command } $test_list {
319 send_gdb "$command\n"
320 gdb_expect {
321 -re "^maint print symbols \[^\n\]*\r\n$gdb_prompt $" {
322 send_gdb "shell ls $symbols_output\n"
323 gdb_expect {
324 -re "$symbols_output_re\r\n$gdb_prompt $" {
325 # See comments for `maint print psymbols'.
326 send_gdb "shell grep 'main(.*block' $symbols_output\n"
327 gdb_expect {
328 -re "int main\\(int, char \\*\\*, char \\*\\*\\); block.*$gdb_prompt $" {
329 pass "$test_name"
330 }
331 -re ".*$gdb_prompt $" { fail "$test_name" }
332 timeout { fail "$test_name (timeout)" }
65731a6b 333 }
34c41c68
DE
334 gdb_test "shell rm -f $symbols_output" ".*" \
335 "shell rm -f symbols_output"
65731a6b 336 }
34c41c68
DE
337 -re ".*$gdb_prompt $" { fail "$test_name" }
338 timeout { fail "$test_name (timeout)" }
65731a6b 339 }
65731a6b 340 }
34c41c68
DE
341 -re ".*$gdb_prompt $" { fail "$test_name" }
342 timeout { fail "$test_name (timeout)" }
65731a6b 343 }
65731a6b 344}
c906108c 345
b4ba55a1
JB
346set msg "maint print type"
347gdb_test_multiple "maint print type argc" $msg {
ae6ae975 348 -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\n$gdb_prompt $" {
b4ba55a1
JB
349 pass $msg
350 }
351}
c906108c 352
a0b3c4fd
JM
353if [istarget "hppa*-*-11*"] {
354 setup_xfail hppa*-*-*11* CLLbs14860
65731a6b
MS
355 gdb_test_multiple "maint print unwind &main" "maint print unwind" {
356 -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 $" {
357 pass "maint print unwind"
358 }
359 -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 $" {
360 xfail "maint print unwind"
361 }
a0b3c4fd
JM
362 }
363}
c906108c
SS
364
365set oldtimeout $timeout
366set timeout [expr $timeout + 300]
367
368# It'd be nice to check for every possible section. However, that's
369# problematic, since the relative ordering wanders from release to
370# release of the compilers. Instead, we'll just check for two
371# sections which appear to always come out in the same relative
372# order. (If that changes, then we should just check for one
373# section.)
374#
375# And by the way: This testpoint will break for PA64, where a.out's
376# are ELF files.
293e2f9e
DJ
377
378# Standard GNU names.
379set text_section ".text"
380set data_section ".data"
381
65731a6b 382gdb_test_multiple "maint info sections" "maint info sections" {
f8b41b00 383 -re "Exec file:\r\n.*maint($EXEEXT)?., file type.*ER_RO.*$gdb_prompt $" {
65731a6b
MS
384 # Looks like RealView which uses different section names.
385 set text_section ER_RO
386 set data_section ER_RW
387 pass "maint info sections"
388 }
f8b41b00 389 -re "Exec file:\r\n.*maint($EXEEXT)?., file type.*neardata.*$gdb_prompt $" {
d93f7b5c
YQ
390 # c6x doesn't have .data section. It has .neardata and .fardata section.
391 set data_section ".neardata"
392 pass "maint info sections"
393 }
f8b41b00 394 -re "Exec file:\r\n.*maint($EXEEXT)?., file type.*$gdb_prompt $" {
65731a6b
MS
395 pass "maint info sections"
396 }
397}
c906108c 398
8ddad156
MS
399# Test for new option: maint info sections <section name>
400# If you don't have a .text section, this will require tweaking.
65731a6b
MS
401
402gdb_test_multiple "maint info sections $text_section" \
403 "maint info sections .text" {
404 -re ".* \\.bss .*$gdb_prompt $" {
405 fail "maint info sections .text"
406 }
407 -re ".* $data_section .*$gdb_prompt $" {
408 fail "maint info sections .text"
409 }
410 -re ".* $text_section .*$gdb_prompt $" {
411 pass "maint info sections .text"
412 }
413 }
8ddad156
MS
414
415# Test for new option: CODE section flag
416# If your data section is tagged CODE, xfail this test.
65731a6b
MS
417
418gdb_test_multiple "maint info sections CODE" "maint info sections CODE" {
293e2f9e
DJ
419 -re ".* $data_section .*$gdb_prompt $" { fail "maint info sections CODE" }
420 -re ".* $text_section .*$gdb_prompt $" { pass "maint info sections CODE" }
8ddad156
MS
421}
422
423# Test for new option: DATA section flag
424# If your text section is tagged DATA, xfail this test.
dbdfa66c 425#
58e8570a 426# The "maint info sections DATA" test is marked for XFAIL on Windows,
dbdfa66c
CV
427# because Windows has text sections marked DATA.
428setup_xfail "*-*-*cygwin*"
58e8570a 429setup_xfail "*-*-*mingw*"
65731a6b
MS
430
431gdb_test_multiple "maint info sections DATA" "maint info sections DATA" {
293e2f9e
DJ
432 -re ".* $text_section .*$gdb_prompt $" { fail "maint info sections DATA" }
433 -re ".* $data_section .*$gdb_prompt $" { pass "maint info sections DATA" }
759f0f0b 434 -re ".* .rodata .*$gdb_prompt $" { pass "maint info sections DATA" }
8ddad156
MS
435}
436
a1dea79a
FF
437set bp_location6 [gdb_get_line_number "set breakpoint 6 here"]
438
65731a6b
MS
439gdb_test_multiple "maint info breakpoints" "maint info breakpoints" {
440 -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 $" {
441 pass "maint info breakpoints"
442 }
443 -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 $" {
444 pass "maint info breakpoints (with shlib events)"
445 }
c906108c
SS
446}
447
65731a6b
MS
448gdb_test "maint print" \
449 "\"maintenance print\" must be followed by the name of a print command\\.\r\nList.*unambiguous\\..*" \
450 "maint print w/o args"
c906108c 451
65731a6b
MS
452gdb_test "maint info" \
453 "\"maintenance info\" must be followed by the name of an info command\\.\r\nList.*unambiguous\\..*" \
454 "maint info w/o args"
c906108c 455
65731a6b
MS
456gdb_test "maint" \
457 "\"maintenance\" must be followed by the name of a maintenance command\\.\r\nList.*unambiguous\\..*" \
458 "maint w/o args"
c906108c 459
f610ab6d
PA
460# Test that "main info line-table" w/o a file name shows the symtab for
461# $srcfile.
462set saw_srcfile 0
463set test "maint info line-table w/o a file name"
464gdb_test_multiple "maint info line-table" $test {
465 -re "symtab: \[^\n\r\]+${srcfile} \\(\\(struct symtab \\*\\) $hex\\)\r\nlinetable: \\(\\(struct linetable \\*\\) $hex\\):\r\nINDEX\[ \t\]+LINE\[ \t\]+ADDRESS" {
466 set saw_srcfile 1
467 exp_continue
468 }
469 -re "symtab: \[^\n\r\]+ \\(\\(struct symtab \\*\\) $hex\\)\r\nlinetable: \\(\\(struct linetable \\*\\) $hex\\):\r\nINDEX\[ \t\]+LINE\[ \t\]+ADDRESS" {
470 # Match each symtab to avoid overflowing expect's buffer.
471 exp_continue
472 }
473 -re "$decimal\[ \t\]+$decimal\[ \t\]+$hex\r\n" {
474 # Line table entries can be long too:
475 #
476 # INDEX LINE ADDRESS
477 # 0 29 0x00000000004006f6
478 # 1 30 0x00000000004006fa
479 # 2 31 0x0000000000400704
480 # 3 42 0x0000000000400706
481 # 4 43 0x0000000000400719
482 # 5 44 0x0000000000400722
483 # 6 45 0x0000000000400740
484 # (...)
485 # 454 129 0x00007ffff7df1d28
486 # 455 0 0x00007ffff7df1d3f
487 #
488 # Match each line to avoid overflowing expect's buffer.
489 exp_continue
490 }
491 -re "$gdb_prompt $" {
492 gdb_assert $saw_srcfile $test
493 }
494}
f2403c39
AB
495
496gdb_test "maint info line-table ${srcfile}" \
497 "symtab: \[^\n\r\]+${srcfile}.*INDEX.*LINE.*ADDRESS.*" \
498 "maint info line-table with filename of current symtab"
499
500gdb_test_no_output "maint info line-table ${srcfile2}" \
501 "maint info line-table with filename of symtab that is not currently expanded"
502
503gdb_test_no_output "maint expand-symtabs"
504
505gdb_test "maint info line-table ${srcfile2}" \
506 "symtab: \[^\n\r\]+${srcfile2}.*INDEX.*LINE.*ADDRESS.*" \
507 "maint info line-table with filename of symtab that is not current"
508
509gdb_test_no_output "maint info line-table xxx.c" \
510 "maint info line-table with invalid filename"
511
c906108c
SS
512set timeout $oldtimeout
513
514#============test help on maint commands
515
65731a6b 516gdb_test "help maint" \
439250fb 517 "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, 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 518
65731a6b
MS
519gdb_test "help maint info" \
520 "Commands for showing internal info about the program being debugged.*unambiguous\\..*"
c906108c 521
d8295fe9
VP
522test_prefix_command_help {"maint print" "maintenance print"} {
523 "Maintenance command for printing GDB internal state\\.\[\r\n\]+"
524}
c906108c 525
d8295fe9
VP
526test_prefix_command_help {"maint" "maintenance"} {
527 "Commands for use by GDB maintainers\\.\[\r\n\]+"
528 "Includes commands to dump specific internal GDB structures in\[\r\n\]+"
439250fb 529 "a human readable form, to cause GDB to deliberately dump core, etc\\.\[\r\n\]+"
d8295fe9 530}
c906108c
SS
531
532#set oldtimeout $timeout
533#set timeout [expr $timeout + 300]
534
65731a6b
MS
535gdb_test_multiple "maint dump-me" "maint dump-me" {
536 -re "Should GDB dump core.*\\(y or n\\) $" {
537 gdb_test "n" ".*" "maint dump-me"
538 }
9bdd0636
YQ
539 -re "Undefined maintenance command: .*$gdb_prompt $" {
540 # Command 'maint dump-me' is registered on non-win32 host.
541 unsupported "maint dump-me"
542 }
65731a6b 543}
c906108c 544
7be570e7 545send_gdb "maint internal-error\n"
039cf96d
AC
546gdb_expect {
547 -re "A problem internal to GDB has been detected" {
548 pass "maint internal-error"
549 if [gdb_internal_error_resync] {
550 pass "internal-error resync"
551 } else {
552 fail "internal-error resync"
7be570e7
JM
553 }
554 }
555 -re ".*$gdb_prompt $" {
556 fail "maint internal-error"
039cf96d 557 untested "internal-error resync"
7be570e7
JM
558 }
559 timeout {
039cf96d
AC
560 fail "maint internal-error (timeout)"
561 untested "internal-error resync"
7be570e7
JM
562 }
563}
564
c906108c
SS
565#set timeout $oldtimeout
566
99e8a4f9
SDJ
567# Test that the commands work without an argument. For this test, we
568# don't need an inferior loaded/running. See PR gdb/21164.
569gdb_exit
570gdb_start
571gdb_test_no_output "maint print symbols"
572gdb_test_no_output "maint print msymbols"
573gdb_test_no_output "maint print psymbols"
c906108c
SS
574
575gdb_exit
576return 0
This page took 3.196873 seconds and 4 git commands to generate.