]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.gdb/selftest.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.gdb / selftest.exp
CommitLineData
8acc9f48 1# Copyright 1988-2013 Free Software Foundation, Inc.
adf40b2e
JM
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
adf40b2e 6# (at your option) any later version.
e22f8b7c 7#
adf40b2e
JM
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#
adf40b2e 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/>.
adf40b2e 15
adf40b2e
JM
16# This file was written by Rob Savoye. (rob@cygnus.com)
17
adf40b2e
JM
18
19# are we on a target board
c1d88655 20if { [is_remote target] || ![isnative] } then {
adf40b2e
JM
21 return
22}
23
adf40b2e
JM
24# Not all of the lines of code near the start of main are executed for
25# every machine. Also, optimization may reorder some of the lines.
26# So all we do is try to step or next over everything until we get
27# to a line that we know is always executed.
28
29proc do_steps_and_nexts {} {
30 global gdb_prompt
31 global srcdir
32
33 gdb_reinitialize_dir $srcdir/..
34
2fa63963 35 set unlikely_line 0
48fe539f 36 for {set count 0} {$count < 32} {incr count} {
ee73db83
DC
37 # NOTE: carlton/2002-12-11: The "initial brace" and
38 # "current_directory initialization" possibilities happen to
39 # me with GCC 3.1 on i686-pc-linux-gnu when I compile with
40 # optimization.
a127f7b4 41 gdb_test_multiple "list" "list" {
0d06e24b
JM
42 -re ".*context = data.*$gdb_prompt $" {
43 set description "step over context initialization"
44 set command "step"
45 }
46 -re ".*argc = context->argc.*$gdb_prompt $" {
47 set description "step over argc initialization"
48 set command "step"
49 }
50 -re ".*argv = context->argv.*$gdb_prompt $" {
51 set description "step over argv initialization"
52 set command "step"
53 }
54 -re ".*quiet = 0.*$gdb_prompt $" {
55 set description "step over quiet initialization"
56 set command "step"
57 }
58 -re ".*batch = 0.*$gdb_prompt $" {
59 set description "step over batch initialization"
60 set command "step"
61 }
adf40b2e
JM
62 -re ".*symarg = NULL.*$gdb_prompt $" {
63 set description "step over symarg initialization"
64 set command "step"
65 }
66 -re ".*execarg = NULL.*$gdb_prompt $" {
67 set description "step over execarg initialization"
68 set command "step"
69 }
5def8285
MK
70 -re ".*pidarg = NULL.*$gdb_prompt $" {
71 set description "step over pidarg initialization"
72 set command "step"
73 }
adf40b2e
JM
74 -re ".*corearg = NULL.*$gdb_prompt $" {
75 set description "step over corearg initialization"
76 set command "step"
77 }
5def8285
MK
78 -re ".*pid_or_core_arg = NULL.*$gdb_prompt $" {
79 set description "step over pid_or_core_arg initialization"
80 set command "step"
81 }
adf40b2e
JM
82 -re ".*cdarg = NULL.*$gdb_prompt $" {
83 set description "step over cdarg initialization"
84 set command "step"
85 }
86 -re ".*ttyarg = NULL.*$gdb_prompt $" {
87 set description "step over ttyarg initialization"
88 set command "step"
89 }
8320cc4f
JK
90 -re ".*cmdarg_vec = NULL.*$gdb_prompt $" {
91 set description "step over cmdarg_vec initialization"
92 set command "step"
93 }
0f3bb72e
PH
94 -re ".*pre_stat_chain = make_command_stats_cleanup.*$gdb_prompt $" {
95 set description "next over make_command_stats_cleanup and everything it calls"
adf40b2e
JM
96 set command "next"
97 }
98 -re ".*START_PROGRESS.*$gdb_prompt $" {
9d62932d
EZ
99 # Note: ezannoni/2004/02/17: This check should be
100 # removed, since as of today that source line is not
101 # in gdb anymore.
adf40b2e
JM
102 set description "next over START_PROGRESS and everything it calls"
103 set command "next"
104 }
105 -re ".*mac_init.*$gdb_prompt $" {
106 set description "next over mac_init and everything it calls"
107 set command "next"
108 }
c3297504
MC
109 -re ".*init_malloc.*$gdb_prompt $" {
110 # gdb 6.2.X is the last gdb which called init_malloc
111 set description "next over init_malloc and everything it calls"
112 set command "next"
113 }
6dd77b81
RH
114 -re ".*lim_at_start.*$gdb_prompt $" {
115 set description "next over lim_at_start initialization"
116 set command "next"
117 }
adf40b2e
JM
118 -re ".*count . 0x3.*$gdb_prompt $" {
119 set description "next over conditional stack alignment code 1"
120 set command "next"
121 }
122 -re ".*if .i != 0.*$gdb_prompt $" {
123 set description "next over conditional stack alignment code 2"
124 set command "next"
125 }
126 -re ".*alloca .i - 4.*$gdb_prompt $" {
127 set description "next over conditional stack alignment alloca"
128 set command "next"
129 }
adf40b2e
JM
130 -re ".*dirsize = 1.*$gdb_prompt $" {
131 set description "next over dirsize initialization"
132 set command "next"
133 }
134 -re ".*dirarg = .* xmalloc.*$gdb_prompt $" {
135 return
136 }
8cf8c2b8
AC
137 -re ".*setlocale .LC_MESSAGES,.*$gdb_prompt $" {
138 set description "next over setlocale LC_MESSAGES"
139 set command "next"
140 }
141 -re ".*setlocale .LC_CTYPE,.*$gdb_prompt $" {
142 set description "next over setlocale LC_CTYPE"
143 set command "next"
144 }
145 -re ".*bindtextdomain .PACKAGE, LOCALEDIR.;.*$gdb_prompt $" {
146 set description "next over bindtextdomain"
147 set command "next"
148 }
149 -re ".*textdomain .PACKAGE.;.*$gdb_prompt $" {
150 set description "next over textdomain PACKAGE"
151 set command "next"
152 }
8320cc4f
JK
153 -re ".*VEC_cleanup .cmdarg_s.*$gdb_prompt $" {
154 set description "next over cmdarg_s VEC_cleanup"
155 set command "next"
156 }
b6db2c47 157 -re "\[0-9\]+\[\t \]+\{\r\n$gdb_prompt $" {
ee73db83
DC
158 set description "step over initial brace"
159 set command "step"
160 }
161 -re ".*current_directory = gdb_dirbuf.*$gdb_prompt $" {
162 set description "step over current_directory initialization"
163 set command "step"
164 }
a1769aca
DC
165 -re ".*gdb_sysroot = .*$gdb_prompt $" {
166 # NOTE: carlton/2003-01-15: More optimization reordering,
167 # observed on GCC 3.1.
168 set description "step over gdb_sysroot initialization"
169 set command "step"
170 }
180dea7c
AS
171 -re ".*ndir = 0.*$gdb_prompt $" {
172 set description "step over ndir initialization"
173 set command "step"
174 }
175 -re ".*instream = stdin.*$gdb_prompt $" {
176 set description "step over instream initialization"
177 set command "step"
178 }
96e25403 179 -re ".*getcwd .gdb_dirbuf, sizeof .gdb_dirbuf.*$gdb_prompt $" {
180dea7c
AS
180 set description "next over getcwd"
181 set command "next"
182 }
96e25403
YQ
183 -re ".*gdb_program_name = xstrdup.*$gdb_prompt $" {
184 set description "next over xstrdup"
185 set command "next"
186 }
187 -re ".*quit_flag = 0.*$gdb_prompt $" {
6d9c3a87
AS
188 set description "step over quit_flag initialization"
189 set command "step"
190 }
191 -re ".*gdb_stdout = stdio_fileopen .stdout.;.*$gdb_prompt $" {
192 set description "step over gdb_stdout initialization"
193 set command "step"
194 }
195 -re ".*gdb_stderr = stdio_fileopen .stderr.;.*$gdb_prompt $" {
196 set description "step over gdb_stderr initialization"
197 set command "step"
198 }
adf40b2e
JM
199 -re ".*main.c.*No such file or directory.*$gdb_prompt $" {
200 setup_xfail "rs6000-*-aix3*"
201 fail "must be able to list source lines"
202 return
203 }
2fa63963
DJ
204 -re ".*interpreter_p = xstrdup.*$gdb_prompt $" {
205 if { $unlikely_line == 0 } {
206 # This is a GCC optimization bug; a constant has been
207 # associated with the wrong line number.
208 setup_xfail "*-*-*" gcc/26475
209 fail "$description (unlikely line from gcc)"
210 set unlikely_line 1
211 }
212 set description "next over xstrdup"
213 set command "next"
214 }
adf40b2e
JM
215 -re ".*$gdb_prompt $" {
216 fail "unknown source line after $description"
217 return
218 }
219 default {
220 fail "unknown source line near main"
221 return
222 }
223 }
a127f7b4 224 gdb_test_multiple "$command" "$description" {
adf40b2e
JM
225 -re ".*No such file or directory.\r\n$gdb_prompt $" {
226 fail "$description (no source available)"
227 }
228 -re ".*A file or directory .* does not exist..\r\n$gdb_prompt $" {
229 fail "$description (no source available)"
230 }
231 -re ".*$gdb_prompt $" {
232 pass "$description"
233 }
adf40b2e
JM
234 }
235 }
236}
237
238proc test_with_self { executable } {
239 global gdb_prompt
240 global tool
241 global det_file
242 global decimal
243 global timeout
b4ca5ed9 244 global INTERNAL_GDBFLAGS
adf40b2e
JM
245
246 # load yourself into the debugger
247 # This can take a relatively long time, particularly for testing where
248 # the executable is being accessed over a network, or where gdb does not
249 # support partial symbols for a particular target and has to load the
250 # entire symbol table. Set the timeout to 10 minutes, which should be
251 # adequate for most environments (it *has* timed out with 5 min on a
252 # SPARCstation SLC under moderate load, so this isn't unreasonable).
253 # After gdb is started, set the timeout to 30 seconds for the duration
254 # of this test, and then back to the original value.
255
256 set oldtimeout $timeout
257 set timeout 600
258 verbose "Timeout is now $timeout seconds" 2
3e3ffd2b 259
2db8e78e
MC
260 global gdb_file_cmd_debug_info
261 set gdb_file_cmd_debug_info "unset"
262
3e3ffd2b 263 set result [gdb_load $executable]
adf40b2e
JM
264 set timeout $oldtimeout
265 verbose "Timeout is now $timeout seconds" 2
266
2db8e78e
MC
267 if { $result != 0 } then {
268 return -1
269 }
270
271 if { $gdb_file_cmd_debug_info != "debug" } then {
272 untested "No debug information, skipping testcase."
3e3ffd2b
MC
273 return -1
274 }
275
adf40b2e
JM
276 # disassemble yourself
277 gdb_test "x/10i main" \
278 "x/10i.*main.*main.$decimal.*main.$decimal.*" \
279 "Disassemble main"
280
281 # Set a breakpoint at main
0d06e24b 282 gdb_test "break captured_main" \
adf40b2e 283 "Breakpoint.*at.* file.*, line.*" \
0d06e24b 284 "breakpoint in captured_main"
adf40b2e
JM
285
286 # We'll need this when we send a ^C to GDB. Need to do it before we
287 # run the program and gdb starts saving and restoring tty states.
288 # On Ultrix, we don't need it and it is really slow (because shell_escape
289 # doesn't use vfork).
290 if ![istarget "*-*-ultrix*"] then {
f6978de9 291 gdb_test "shell stty intr '^C'" ".*" \
adf40b2e
JM
292 "set interrupt character in test_with_self"
293 }
294
295 # FIXME: If we put this after the run to main, the first list
296 # command doesn't print the same line as the current line where
297 # gdb is stopped.
019ebafc 298 gdb_test_no_output "set listsize 1" "set listsize to 1"
adf40b2e
JM
299
300 # run yourself
301 # It may take a very long time for the inferior gdb to start (lynx),
302 # so we bump it back up for the duration of this command.
303 set timeout 600
304
0d06e24b 305 set description "run until breakpoint at captured_main"
b4ca5ed9 306 gdb_test_multiple "run $INTERNAL_GDBFLAGS" "$description" {
0d06e24b 307 -re "Starting program.*Breakpoint \[0-9\]+,.*captured_main .data.* at .*main.c:.*$gdb_prompt $" {
adf40b2e
JM
308 pass "$description"
309 }
0d06e24b 310 -re "Starting program.*Breakpoint \[0-9\]+,.*captured_main .data.*$gdb_prompt $" {
adf40b2e
JM
311 xfail "$description (line numbers scrambled?)"
312 }
313 -re "vfork: No more processes.*$gdb_prompt $" {
314 fail "$description (out of virtual memory)"
315 set timeout $oldtimeout
316 verbose "Timeout is now $timeout seconds" 2
317 return -1
318 }
319 -re ".*$gdb_prompt $" {
320 fail "$description"
321 set timeout $oldtimeout
322 verbose "Timeout is now $timeout seconds" 2
323 return -1
324 }
adf40b2e
JM
325 }
326
327 set timeout $oldtimeout
328 verbose "Timeout is now $timeout seconds" 2
329
330 # do we have a version number ?
a127f7b4 331 gdb_test_multiple "print version" "printed version" {
d4f3574e
SS
332 -re ".\[0-9\]+ = .\[0-9.\]+.*$gdb_prompt $" {
333 pass "printed version as string"
334 }
adf40b2e 335 -re ".\[0-9\]+ = +0x.*\[0-9.\]+.*$gdb_prompt $" {
d4f3574e 336 pass "printed version as pointer"
adf40b2e
JM
337 }
338 -re ".\[0-9\]+ = +.+ +0x.*\[0-9.\]+.*$gdb_prompt $" {
339 pass "printed version with cast"
340 }
adf40b2e
JM
341 }
342
343 do_steps_and_nexts
344
345 gdb_test "print \"foo\"" ".\[0-9\]+ = \"foo\"" "print a string"
346
347 # do_steps_and_nexts left us ready to execute an xmalloc call,
348 # so give that a try.
349 # If we don't actually enter the xmalloc call when we give a
350 # step command that seems like a genuine bug. It seems to happen
351 # on most RISC processors.
48fe539f
DJ
352 # NOTE drow/2003-06-22: However, if we step back to the preceding two
353 # lines, just keep stepping until we enter.
354 set stepped_back 0
adf40b2e
JM
355 setup_xfail "alpha-*-*" "mips-*-*"
356 set description "step into xmalloc call"
a127f7b4 357 gdb_test_multiple "step" "$description" {
48fe539f
DJ
358 -re "ncmd = 0;.*$gdb_prompt $" {
359 set stepped_back 1
360 send_gdb "step\n"
361 exp_continue
362 }
274bcba0
EZ
363 -re ".*cmdarg = .* xmalloc.*$gdb_prompt $" {
364 set stepped_back 1
365 send_gdb "step\n"
366 exp_continue
367 }
48fe539f
DJ
368 -re "dirsize = 1;.*$gdb_prompt $" {
369 set stepped_back 1
370 send_gdb "step\n"
371 exp_continue
372 }
373 -re ".*dirarg = .* xmalloc.*$gdb_prompt $" {
374 if { $stepped_back == 1 } {
375 send_gdb "step\n"
376 exp_continue
377 } else {
378 fail "$description"
379 }
380 }
adf40b2e
JM
381 -re "xmalloc.*size=.*at.*utils.c.*$gdb_prompt $" {
382 pass "$description"
383 }
384 -re ".*No such file or directory.\r\n$gdb_prompt $" {
385 pass "$description (no source available)"
386 }
387 -re "A file or directory .* does not exist..\r\n$gdb_prompt $" {
388 pass "$description (no source available)"
389 }
adf40b2e
JM
390 }
391
392 # start the "xgdb" process
c0b9f2c6
PA
393 if [target_info exists gdb,noinferiorio] {
394 # Maybe testing with a local extended-remote gdbserver. With
395 # no way to interact with inferior GDB, all we can do is let
396 # it run.
397 send_gdb "continue\n"
398 # Wait a bit while the inferior gdb gets to its prompt.
399 sleep 1
400 } else {
401 set test "xgdb is at prompt"
402 gdb_test_multiple "continue" $test {
403 -re "GNU gdb \[0-9\.\]*.*Copyright \\(C\\) \[0-9\]* Free Software Foundation, Inc.*License GPLv3\\+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.*This is free software: you are free to change and redistribute it.*There is NO WARRANTY, to the extent permitted by law. Type \"show copying\".*and \"show warranty\" for details.*This GDB was configured as .*$gdb_prompt $" {
404 pass $test
405 }
a127f7b4 406 }
c0b9f2c6
PA
407
408 # set xgdb prompt so we can tell which is which
409 gdb_test_multiple "set prompt (xgdb) " "Set xgdb_prompt" {
410 -re "\[(\]xgdb\[)\].*\[(\]xgdb\[)\] $" {
411 pass "Set xgdb prompt"
412 }
a127f7b4 413 }
adf40b2e 414 }
c0b9f2c6 415
adf40b2e
JM
416 # kill the xgdb process
417 set description "send ^C to child process"
418 send_gdb "\003"
419 gdb_expect {
420 -re "Program received signal SIGINT.*$gdb_prompt $" {
421 pass "$description"
422 }
423 -re ".*$gdb_prompt $" {
424 fail "$description"
425 }
426 timeout {
427 fail "$description (timeout)"
428 }
429 }
430
431 set description "send SIGINT signal to child process"
a127f7b4
MS
432 gdb_test "signal SIGINT" \
433 "Continuing with signal SIGINT.*" \
434 "$description"
adf40b2e
JM
435
436 # get a stack trace
437 #
438 # This fails on some linux systems for unknown reasons. On the
439 # systems where it fails, sometimes it works fine when run manually.
440 # The testsuite failures may not be limited to just aout systems.
634d57ec 441 setup_xfail "i*86-pc-linuxaout-gnu"
adf40b2e 442 set description "backtrace through signal handler"
a127f7b4 443 gdb_test_multiple "backtrace" "$description" {
92806416 444 -re "#0.*(read|poll).*in main \\(.*\\) at .*gdb\\.c.*$gdb_prompt $" {
adf40b2e
JM
445 pass "$description"
446 }
447 -re ".*$gdb_prompt $" {
448 # On the alpha, we hit the infamous problem about gdb
449 # being unable to get the frame pointer (mentioned in
450 # gdb/README). As it is intermittent, there is no way to
451 # XFAIL it which will give us an XPASS if the problem goes
452 # away.
453 setup_xfail "alpha*-*-osf*"
454 fail "$description"
455 }
adf40b2e
JM
456 }
457
458
459 # Set the timeout back to the value it had when we were called.
460 set timeout $oldtimeout
461 verbose "Timeout is now $timeout seconds" 2
462
463 # Restart gdb in case next test expects it to be started already.
464 return 0
465}
466
467# Find a pathname to a file that we would execute if the shell was asked
468# to run $arg using the current PATH.
469
470proc find_gdb { arg } {
471
472 # If the arg directly specifies an existing executable file, then
473 # simply use it.
474
475 if [file executable $arg] then {
476 return $arg
477 }
478
479 set result [which $arg]
480 if [string match "/" [ string range $result 0 0 ]] then {
481 return $result
482 }
483
484 # If everything fails, just return the unqualified pathname as default
485 # and hope for best.
486
487 return $arg
488}
489
490# Run the test with self.
491# Copy the file executable file in case this OS doesn't like to edit its own
492# text space.
493
494set GDB_FULLPATH [find_gdb $GDB]
495
496# Remove any old copy lying around.
497remote_file host delete x$tool
498
499gdb_start
500set file [remote_download host $GDB_FULLPATH x$tool]
501set result [test_with_self $file];
502gdb_exit;
503catch "remote_file host delete $file";
504
505if {$result <0} then {
506 warning "Couldn't test self"
507 return -1
508}