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