]> git.ipfire.org Git - people/stevee/ipfire-3.x.git/blob - gdb/patches/gdb-6.3-test-pie-20050107.patch
gdb: Update to 7.3.50.20110722.
[people/stevee/ipfire-3.x.git] / gdb / patches / gdb-6.3-test-pie-20050107.patch
1 Index: gdb-7.2.50.20110320/gdb/testsuite/configure.ac
2 ===================================================================
3 --- gdb-7.2.50.20110320.orig/gdb/testsuite/configure.ac 2011-03-03 17:57:55.000000000 +0100
4 +++ gdb-7.2.50.20110320/gdb/testsuite/configure.ac 2011-03-20 20:21:43.000000000 +0100
5 @@ -97,6 +97,6 @@ AC_OUTPUT([Makefile \
6 gdb.hp/gdb.aCC/Makefile gdb.hp/gdb.compat/Makefile \
7 gdb.hp/gdb.defects/Makefile \
8 gdb.mi/Makefile gdb.modula2/Makefile gdb.multi/Makefile \
9 - gdb.objc/Makefile gdb.opencl/Makefile gdb.opt/Makefile gdb.pascal/Makefile \
10 + gdb.objc/Makefile gdb.opencl/Makefile gdb.opt/Makefile gdb.pascal/Makefile gdb.pie/Makefile \
11 gdb.python/Makefile gdb.reverse/Makefile gdb.stabs/Makefile \
12 gdb.threads/Makefile gdb.trace/Makefile gdb.xml/Makefile])
13 Index: gdb-7.2.50.20110320/gdb/testsuite/configure
14 ===================================================================
15 --- gdb-7.2.50.20110320.orig/gdb/testsuite/configure 2011-03-03 17:57:55.000000000 +0100
16 +++ gdb-7.2.50.20110320/gdb/testsuite/configure 2011-03-20 20:21:43.000000000 +0100
17 @@ -3448,7 +3448,7 @@ done
18
19
20
21 -ac_config_files="$ac_config_files Makefile gdb.ada/Makefile gdb.arch/Makefile gdb.asm/Makefile gdb.base/Makefile gdb.cell/Makefile gdb.cp/Makefile gdb.disasm/Makefile gdb.dwarf2/Makefile gdb.fortran/Makefile gdb.server/Makefile gdb.java/Makefile gdb.hp/Makefile gdb.hp/gdb.objdbg/Makefile gdb.hp/gdb.base-hp/Makefile gdb.hp/gdb.aCC/Makefile gdb.hp/gdb.compat/Makefile gdb.hp/gdb.defects/Makefile gdb.mi/Makefile gdb.modula2/Makefile gdb.multi/Makefile gdb.objc/Makefile gdb.opencl/Makefile gdb.opt/Makefile gdb.pascal/Makefile gdb.python/Makefile gdb.reverse/Makefile gdb.stabs/Makefile gdb.threads/Makefile gdb.trace/Makefile gdb.xml/Makefile"
22 +ac_config_files="$ac_config_files Makefile gdb.ada/Makefile gdb.arch/Makefile gdb.asm/Makefile gdb.base/Makefile gdb.cell/Makefile gdb.cp/Makefile gdb.disasm/Makefile gdb.dwarf2/Makefile gdb.fortran/Makefile gdb.server/Makefile gdb.java/Makefile gdb.hp/Makefile gdb.hp/gdb.objdbg/Makefile gdb.hp/gdb.base-hp/Makefile gdb.hp/gdb.aCC/Makefile gdb.hp/gdb.compat/Makefile gdb.hp/gdb.defects/Makefile gdb.mi/Makefile gdb.modula2/Makefile gdb.multi/Makefile gdb.objc/Makefile gdb.opencl/Makefile gdb.opt/Makefile gdb.pascal/Makefile gdb.pie/Makefile gdb.python/Makefile gdb.reverse/Makefile gdb.stabs/Makefile gdb.threads/Makefile gdb.trace/Makefile gdb.xml/Makefile"
23
24 cat >confcache <<\_ACEOF
25 # This file is a shell script that caches the results of configure
26 @@ -4173,6 +4173,7 @@ do
27 "gdb.opencl/Makefile") CONFIG_FILES="$CONFIG_FILES gdb.opencl/Makefile" ;;
28 "gdb.opt/Makefile") CONFIG_FILES="$CONFIG_FILES gdb.opt/Makefile" ;;
29 "gdb.pascal/Makefile") CONFIG_FILES="$CONFIG_FILES gdb.pascal/Makefile" ;;
30 + "gdb.pie/Makefile") CONFIG_FILES="$CONFIG_FILES gdb.pie/Makefile" ;;
31 "gdb.python/Makefile") CONFIG_FILES="$CONFIG_FILES gdb.python/Makefile" ;;
32 "gdb.reverse/Makefile") CONFIG_FILES="$CONFIG_FILES gdb.reverse/Makefile" ;;
33 "gdb.stabs/Makefile") CONFIG_FILES="$CONFIG_FILES gdb.stabs/Makefile" ;;
34 Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/attach.c
35 ===================================================================
36 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
37 +++ gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/attach.c 2011-03-20 20:21:43.000000000 +0100
38 @@ -0,0 +1,20 @@
39 +/* This program is intended to be started outside of gdb, and then
40 + attached to by gdb. Thus, it simply spins in a loop. The loop
41 + is exited when & if the variable 'should_exit' is non-zero. (It
42 + is initialized to zero in this program, so the loop will never
43 + exit unless/until gdb sets the variable to non-zero.)
44 + */
45 +#include <stdio.h>
46 +
47 +int should_exit = 0;
48 +
49 +int main ()
50 +{
51 + int local_i = 0;
52 +
53 + while (! should_exit)
54 + {
55 + local_i++;
56 + }
57 + return 0;
58 +}
59 Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/attach2.c
60 ===================================================================
61 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
62 +++ gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/attach2.c 2011-03-20 20:21:43.000000000 +0100
63 @@ -0,0 +1,24 @@
64 +/* This program is intended to be started outside of gdb, and then
65 + attached to by gdb. Thus, it simply spins in a loop. The loop
66 + is exited when & if the variable 'should_exit' is non-zero. (It
67 + is initialized to zero in this program, so the loop will never
68 + exit unless/until gdb sets the variable to non-zero.)
69 + */
70 +#include <stdio.h>
71 +#include <stdlib.h>
72 +#include <unistd.h>
73 +
74 +int should_exit = 0;
75 +
76 +int main ()
77 +{
78 + int local_i = 0;
79 +
80 + sleep( 10 ); /* System call causes register fetch to fail */
81 + /* This is a known HPUX "feature" */
82 + while (! should_exit)
83 + {
84 + local_i++;
85 + }
86 + return (0);
87 +}
88 Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/break.c
89 ===================================================================
90 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
91 +++ gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/break.c 2011-03-20 20:21:43.000000000 +0100
92 @@ -0,0 +1,146 @@
93 +/* This testcase is part of GDB, the GNU debugger.
94 +
95 + Copyright 1992, 1993, 1994, 1995, 1999, 2002, 2003 Free Software
96 + Foundation, Inc.
97 +
98 + This program is free software; you can redistribute it and/or modify
99 + it under the terms of the GNU General Public License as published by
100 + the Free Software Foundation; either version 2 of the License, or
101 + (at your option) any later version.
102 +
103 + This program is distributed in the hope that it will be useful,
104 + but WITHOUT ANY WARRANTY; without even the implied warranty of
105 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
106 + GNU General Public License for more details.
107 +
108 + You should have received a copy of the GNU General Public License
109 + along with this program; if not, write to the Free Software
110 + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
111 +
112 + Please email any bugs, comments, and/or additions to this file to:
113 + bug-gdb@prep.ai.mit.edu */
114 +
115 +#ifdef vxworks
116 +
117 +# include <stdio.h>
118 +
119 +/* VxWorks does not supply atoi. */
120 +static int
121 +atoi (z)
122 + char *z;
123 +{
124 + int i = 0;
125 +
126 + while (*z >= '0' && *z <= '9')
127 + i = i * 10 + (*z++ - '0');
128 + return i;
129 +}
130 +
131 +/* I don't know of any way to pass an array to VxWorks. This function
132 + can be called directly from gdb. */
133 +
134 +vxmain (arg)
135 +char *arg;
136 +{
137 + char *argv[2];
138 +
139 + argv[0] = "";
140 + argv[1] = arg;
141 + main (2, argv, (char **) 0);
142 +}
143 +
144 +#else /* ! vxworks */
145 +# include <stdio.h>
146 +# include <stdlib.h>
147 +#endif /* ! vxworks */
148 +
149 +#ifdef PROTOTYPES
150 +extern int marker1 (void);
151 +extern int marker2 (int a);
152 +extern void marker3 (char *a, char *b);
153 +extern void marker4 (long d);
154 +#else
155 +extern int marker1 ();
156 +extern int marker2 ();
157 +extern void marker3 ();
158 +extern void marker4 ();
159 +#endif
160 +
161 +/*
162 + * This simple classical example of recursion is useful for
163 + * testing stack backtraces and such.
164 + */
165 +
166 +#ifdef PROTOTYPES
167 +int factorial(int);
168 +
169 +int
170 +main (int argc, char **argv, char **envp)
171 +#else
172 +int
173 +main (argc, argv, envp)
174 +int argc;
175 +char *argv[], **envp;
176 +#endif
177 +{
178 +#ifdef usestubs
179 + set_debug_traps(); /* set breakpoint 5 here */
180 + breakpoint();
181 +#endif
182 + if (argc == 12345) { /* an unlikely value < 2^16, in case uninited */ /* set breakpoint 6 here */
183 + fprintf (stderr, "usage: factorial <number>\n");
184 + return 1;
185 + }
186 + printf ("%d\n", factorial (atoi ("6"))); /* set breakpoint 1 here */
187 + /* set breakpoint 12 here */
188 + marker1 (); /* set breakpoint 11 here */
189 + marker2 (43); /* set breakpoint 20 here */
190 + marker3 ("stack", "trace"); /* set breakpoint 21 here */
191 + marker4 (177601976L);
192 + argc = (argc == 12345); /* This is silly, but we can step off of it */ /* set breakpoint 2 here */
193 + return argc; /* set breakpoint 10 here */
194 +}
195 +
196 +#ifdef PROTOTYPES
197 +int factorial (int value)
198 +#else
199 +int factorial (value)
200 +int value;
201 +#endif
202 +{
203 + if (value > 1) { /* set breakpoint 7 here */
204 + value *= factorial (value - 1);
205 + }
206 + return (value); /* set breakpoint 19 here */
207 +}
208 +
209 +#ifdef PROTOTYPES
210 +int multi_line_if_conditional (int a, int b, int c)
211 +#else
212 +int multi_line_if_conditional (a, b, c)
213 + int a, b, c;
214 +#endif
215 +{
216 + if (a /* set breakpoint 3 here */
217 + && b
218 + && c)
219 + return 0;
220 + else
221 + return 1;
222 +}
223 +
224 +#ifdef PROTOTYPES
225 +int multi_line_while_conditional (int a, int b, int c)
226 +#else
227 +int multi_line_while_conditional (a, b, c)
228 + int a, b, c;
229 +#endif
230 +{
231 + while (a /* set breakpoint 4 here */
232 + && b
233 + && c)
234 + {
235 + a--, b--, c--;
236 + }
237 + return 0;
238 +}
239 Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/break1.c
240 ===================================================================
241 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
242 +++ gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/break1.c 2011-03-20 20:21:43.000000000 +0100
243 @@ -0,0 +1,44 @@
244 +/* This testcase is part of GDB, the GNU debugger.
245 +
246 + Copyright 1992, 1993, 1994, 1995, 1999, 2002, 2003 Free Software
247 + Foundation, Inc.
248 +
249 + This program is free software; you can redistribute it and/or modify
250 + it under the terms of the GNU General Public License as published by
251 + the Free Software Foundation; either version 2 of the License, or
252 + (at your option) any later version.
253 +
254 + This program is distributed in the hope that it will be useful,
255 + but WITHOUT ANY WARRANTY; without even the implied warranty of
256 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
257 + GNU General Public License for more details.
258 +
259 + You should have received a copy of the GNU General Public License
260 + along with this program; if not, write to the Free Software
261 + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
262 +
263 + Please email any bugs, comments, and/or additions to this file to:
264 + bug-gdb@prep.ai.mit.edu */
265 +
266 +/* The code for this file was extracted from the gdb testsuite
267 + testcase "break.c". */
268 +
269 +/* The following functions do nothing useful. They are included
270 + simply as places to try setting breakpoints at. They are
271 + explicitly "one-line functions" to verify that this case works
272 + (some versions of gcc have or have had problems with this).
273 +
274 + These functions are in a separate source file to prevent an
275 + optimizing compiler from inlining them and optimizing them away. */
276 +
277 +#ifdef PROTOTYPES
278 +int marker1 (void) { return (0); } /* set breakpoint 15 here */
279 +int marker2 (int a) { return (1); } /* set breakpoint 8 here */
280 +void marker3 (char *a, char *b) {} /* set breakpoint 17 here */
281 +void marker4 (long d) {} /* set breakpoint 14 here */
282 +#else
283 +int marker1 () { return (0); } /* set breakpoint 16 here */
284 +int marker2 (a) int a; { return (1); } /* set breakpoint 9 here */
285 +void marker3 (a, b) char *a, *b; {} /* set breakpoint 18 here */
286 +void marker4 (d) long d; {} /* set breakpoint 13 here */
287 +#endif
288 Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/coremaker.c
289 ===================================================================
290 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
291 +++ gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/coremaker.c 2011-03-20 20:21:43.000000000 +0100
292 @@ -0,0 +1,142 @@
293 +/* Copyright 1992, 1993, 1994, 1995, 1996, 1999
294 + Free Software Foundation, Inc.
295 +
296 + This file is part of GDB.
297 +
298 + This program is free software; you can redistribute it and/or modify
299 + it under the terms of the GNU General Public License as published by
300 + the Free Software Foundation; either version 2 of the License, or (at
301 + your option) any later version.
302 +
303 + This program is distributed in the hope that it will be useful, but
304 + WITHOUT ANY WARRANTY; without even the implied warranty of
305 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
306 + General Public License for more details.
307 +
308 + You should have received a copy of the GNU General Public License
309 + along with this program; if not, write to the Free Software
310 + Foundation, Inc., 59 Temple Place - Suite 330,
311 + Boston, MA 02111-1307, USA. */
312 +
313 +/* Simple little program that just generates a core dump from inside some
314 + nested function calls. */
315 +
316 +#include <stdio.h>
317 +#include <sys/types.h>
318 +#include <fcntl.h>
319 +#include <sys/mman.h>
320 +#include <signal.h>
321 +#include <stdlib.h>
322 +#include <unistd.h>
323 +
324 +#ifndef __STDC__
325 +#define const /**/
326 +#endif
327 +
328 +#define MAPSIZE (8 * 1024)
329 +
330 +/* Don't make these automatic vars or we will have to walk back up the
331 + stack to access them. */
332 +
333 +char *buf1;
334 +char *buf2;
335 +
336 +int coremaker_data = 1; /* In Data section */
337 +int coremaker_bss; /* In BSS section */
338 +
339 +const int coremaker_ro = 201; /* In Read-Only Data section */
340 +
341 +/* Note that if the mapping fails for any reason, we set buf2
342 + to -1 and the testsuite notices this and reports it as
343 + a failure due to a mapping error. This way we don't have
344 + to test for specific errors when running the core maker. */
345 +
346 +void
347 +mmapdata ()
348 +{
349 + int j, fd;
350 +
351 + /* Allocate and initialize a buffer that will be used to write
352 + the file that is later mapped in. */
353 +
354 + buf1 = (char *) malloc (MAPSIZE);
355 + for (j = 0; j < MAPSIZE; ++j)
356 + {
357 + buf1[j] = j;
358 + }
359 +
360 + /* Write the file to map in */
361 +
362 + fd = open ("coremmap.data", O_CREAT | O_RDWR, 0666);
363 + if (fd == -1)
364 + {
365 + perror ("coremmap.data open failed");
366 + buf2 = (char *) -1;
367 + return;
368 + }
369 + write (fd, buf1, MAPSIZE);
370 +
371 + /* Now map the file into our address space as buf2 */
372 +
373 + buf2 = (char *) mmap (0, MAPSIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
374 + if (buf2 == (char *) -1)
375 + {
376 + perror ("mmap failed");
377 + return;
378 + }
379 +
380 + /* Verify that the original data and the mapped data are identical.
381 + If not, we'd rather fail now than when trying to access the mapped
382 + data from the core file. */
383 +
384 + for (j = 0; j < MAPSIZE; ++j)
385 + {
386 + if (buf1[j] != buf2[j])
387 + {
388 + fprintf (stderr, "mapped data is incorrect");
389 + buf2 = (char *) -1;
390 + return;
391 + }
392 + }
393 +}
394 +
395 +void
396 +func2 ()
397 +{
398 + int coremaker_local[5];
399 + int i;
400 +
401 +#ifdef SA_FULLDUMP
402 + /* Force a corefile that includes the data section for AIX. */
403 + {
404 + struct sigaction sa;
405 +
406 + sigaction (SIGABRT, (struct sigaction *)0, &sa);
407 + sa.sa_flags |= SA_FULLDUMP;
408 + sigaction (SIGABRT, &sa, (struct sigaction *)0);
409 + }
410 +#endif
411 +
412 + /* Make sure that coremaker_local doesn't get optimized away. */
413 + for (i = 0; i < 5; i++)
414 + coremaker_local[i] = i;
415 + coremaker_bss = 0;
416 + for (i = 0; i < 5; i++)
417 + coremaker_bss += coremaker_local[i];
418 + coremaker_data = coremaker_ro + 1;
419 + abort ();
420 +}
421 +
422 +void
423 +func1 ()
424 +{
425 + func2 ();
426 +}
427 +
428 +int main ()
429 +{
430 + mmapdata ();
431 + func1 ();
432 + return 0;
433 +}
434 +
435 Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/attach.exp
436 ===================================================================
437 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
438 +++ gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/attach.exp 2011-03-20 20:25:53.000000000 +0100
439 @@ -0,0 +1,417 @@
440 +# Copyright 1997, 1999, 2002 Free Software Foundation, Inc.
441 +
442 +# This program is free software; you can redistribute it and/or modify
443 +# it under the terms of the GNU General Public License as published by
444 +# the Free Software Foundation; either version 2 of the License, or
445 +# (at your option) any later version.
446 +#
447 +# This program is distributed in the hope that it will be useful,
448 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
449 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
450 +# GNU General Public License for more details.
451 +#
452 +# You should have received a copy of the GNU General Public License
453 +# along with this program; if not, write to the Free Software
454 +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
455 +
456 +# On HP-UX 11.0, this test is causing a process running the program
457 +# "attach" to be left around spinning. Until we figure out why, I am
458 +# commenting out the test to avoid polluting tiamat (our 11.0 nightly
459 +# test machine) with these processes. RT
460 +#
461 +# Setting the magic bit in the target app should work. I added a
462 +# "kill", and also a test for the R3 register warning. JB
463 +if { [istarget "hppa*-*-hpux*"] } {
464 + return 0
465 +}
466 +
467 +# are we on a target board
468 +if [is_remote target] then {
469 + return 0
470 +}
471 +
472 +set testfile "attach"
473 +set srcfile ${testfile}.c
474 +set srcfile2 ${testfile}2.c
475 +set binfile ${objdir}/${subdir}/${testfile}
476 +set binfile2 ${objdir}/${subdir}/${testfile}2
477 +set escapedbinfile [string_to_regexp ${objdir}/${subdir}/${testfile}]
478 +set cleanupfile ${objdir}/${subdir}/${testfile}.awk
479 +
480 +#execute_anywhere "rm -f ${binfile} ${binfile2}"
481 +remote_exec build "rm -f ${binfile} ${binfile2}"
482 +# For debugging this test
483 +#
484 +#log_user 1
485 +
486 +# Clean out any old files from past runs.
487 +#
488 +remote_exec build "${cleanupfile}"
489 +
490 +# build the first test case
491 +#
492 +if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug "additional_flags= -fpie -pie"}] != "" } {
493 + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
494 +}
495 +
496 +# Build the in-system-call test
497 +
498 +if { [gdb_compile "${srcdir}/${subdir}/${srcfile2}" "${binfile2}" executable {debug "additional_flags= -fpie -pie"}] != "" } {
499 + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
500 +}
501 +
502 +if [get_compiler_info ${binfile}] {
503 + return -1
504 +}
505 +
506 +proc do_attach_tests {} {
507 + global gdb_prompt
508 + global binfile
509 + global escapedbinfile
510 + global srcfile
511 + global testfile
512 + global objdir
513 + global subdir
514 + global timeout
515 +
516 + # Start the program running and then wait for a bit, to be sure
517 + # that it can be attached to.
518 + #
519 + set testpid [eval exec $binfile &]
520 + exec sleep 2
521 +
522 + # Verify that we cannot attach to nonsense.
523 + #
524 + send_gdb "attach abc\n"
525 + gdb_expect {
526 + -re ".*Illegal process-id: abc.*$gdb_prompt $"\
527 + {pass "attach to nonsense is prohibited"}
528 + -re "Attaching to.*, process .*couldn't open /proc file.*$gdb_prompt $"\
529 + {
530 + # Response expected from /proc-based systems.
531 + pass "attach to nonsense is prohibited"
532 + }
533 + -re "Attaching to.*$gdb_prompt $"\
534 + {fail "attach to nonsense is prohibited (bogus pid allowed)"}
535 + -re "$gdb_prompt $" {fail "attach to nonsense is prohibited"}
536 + timeout {fail "(timeout) attach to nonsense is prohibited"}
537 + }
538 +
539 + # Verify that we cannot attach to what appears to be a valid
540 + # process ID, but is a process that doesn't exist. Traditionally,
541 + # most systems didn't have a process with ID 0, so we take that as
542 + # the default. However, there are a few exceptions.
543 + #
544 + set boguspid 0
545 + if { [istarget "*-*-*bsd*"] } {
546 + # In FreeBSD 5.0, PID 0 is used for "swapper". Use -1 instead
547 + # (which should have the desired effect on any version of
548 + # FreeBSD, and probably other *BSD's too).
549 + set boguspid -1
550 + }
551 + send_gdb "attach $boguspid\n"
552 + gdb_expect {
553 + -re "Attaching to.*, process $boguspid.*No such process.*$gdb_prompt $"\
554 + {
555 + # Response expected on ptrace-based systems (i.e. HP-UX 10.20).
556 + pass "attach to nonexistent process is prohibited"
557 + }
558 + -re "Attaching to.*, process $boguspid failed.*Hint.*$gdb_prompt $"\
559 + {
560 + # Response expected on ttrace-based systems (i.e. HP-UX 11.0).
561 + pass "attach to nonexistent process is prohibited"
562 + }
563 + -re "Attaching to.*, process $boguspid.*denied.*$gdb_prompt $"\
564 + {pass "attach to nonexistent process is prohibited"}
565 + -re "Attaching to.*, process $boguspid.*not permitted.*$gdb_prompt $"\
566 + {pass "attach to nonexistent process is prohibited"}
567 + -re "Attaching to.*, process .*couldn't open /proc file.*$gdb_prompt $"\
568 + {
569 + # Response expected from /proc-based systems.
570 + pass "attach to nonexistent process is prohibited"
571 + }
572 + -re "$gdb_prompt $" {fail "attach to nonexistent process is prohibited"}
573 + timeout {
574 + fail "(timeout) attach to nonexistent process is prohibited"
575 + }
576 + }
577 +
578 + # Verify that we can attach to the process by first giving its
579 + # executable name via the file command, and using attach with
580 + # the process ID.
581 + #
582 + # (Actually, the test system appears to do this automatically
583 + # for us. So, we must also be prepared to be asked if we want
584 + # to discard an existing set of symbols.)
585 + #
586 + send_gdb "file $binfile\n"
587 + gdb_expect {
588 + -re "Load new symbol table from.*y or n.*$" {
589 + send_gdb "y\n"
590 + gdb_expect {
591 + -re "Reading symbols from $escapedbinfile\.\.\.*done.*$gdb_prompt $"\
592 + {pass "(re)set file, before attach1"}
593 + -re "$gdb_prompt $" {fail "(re)set file, before attach1"}
594 + timeout {fail "(timeout) (re)set file, before attach1"}
595 + }
596 + }
597 + -re "Reading symbols from $escapedbinfile\.\.\.*done.*$gdb_prompt $"\
598 + {pass "set file, before attach1"}
599 + -re "$gdb_prompt $" {fail "set file, before attach1"}
600 + timeout {fail "(timeout) set file, before attach1"}
601 + }
602 +
603 + send_gdb "attach $testpid\n"
604 + gdb_expect {
605 + -re "Attaching to program.*`?$escapedbinfile'?, process $testpid.*main.*at .*$srcfile:.*$gdb_prompt $"\
606 + {pass "attach1, after setting file"}
607 + -re "$gdb_prompt $" {fail "attach1, after setting file"}
608 + timeout {fail "(timeout) attach1, after setting file"}
609 + }
610 +
611 + # Verify that we can "see" the variable "should_exit" in the
612 + # program, and that it is zero.
613 + #
614 + send_gdb "print should_exit\n"
615 + gdb_expect {
616 + -re ".* = 0.*$gdb_prompt $"\
617 + {pass "after attach1, print should_exit"}
618 + -re "$gdb_prompt $" {fail "after attach1, print should_exit"}
619 + timeout {fail "(timeout) after attach1, print should_exit"}
620 + }
621 +
622 + # Detach the process.
623 + #
624 + send_gdb "detach\n"
625 + gdb_expect {
626 + -re "Detaching from program: .*$escapedbinfile.*$gdb_prompt $"\
627 + {pass "attach1 detach"}
628 + -re "$gdb_prompt $" {fail "attach1 detach"}
629 + timeout {fail "(timeout) attach1 detach"}
630 + }
631 +
632 + # Wait a bit for gdb to finish detaching
633 + #
634 + exec sleep 5
635 +
636 + # Purge the symbols from gdb's brain. (We want to be certain
637 + # the next attach, which won't be preceded by a "file" command,
638 + # is really getting the executable file without our help.)
639 + #
640 + set old_timeout $timeout
641 + set timeout 15
642 + send_gdb "file\n"
643 + gdb_expect {
644 + -re ".*gdb internal error.*$" {
645 + fail "Internal error, prob. Memory corruption"
646 + }
647 + -re "No executable file now.*Discard symbol table.*y or n.*$" {
648 + send_gdb "y\n"
649 + gdb_expect {
650 + -re "No symbol file now.*$gdb_prompt $"\
651 + {pass "attach1, purging symbols after detach"}
652 + -re "$gdb_prompt $" {fail "attach1, purging symbols after detach"}
653 + timeout {fail "(timeout) attach1, purging symbols after detach"}
654 + }
655 + }
656 + -re "$gdb_prompt $" {fail "attach1, purging file after detach"}
657 + timeout {
658 + fail "(timeout) attach1, purging file after detach"
659 + }
660 + }
661 + set timeout $old_timeout
662 +
663 + # Verify that we can attach to the process just by giving the
664 + # process ID.
665 + #
666 + send_gdb "attach $testpid\n"
667 + gdb_expect {
668 + -re "Attaching to process $testpid.*Reading symbols from $escapedbinfile.*main.*at .*$gdb_prompt $"\
669 + {pass "attach2"}
670 + -re "$gdb_prompt $" {fail "attach2"}
671 + timeout {fail "(timeout) attach2"}
672 + }
673 +
674 + # Verify that we can modify the variable "should_exit" in the
675 + # program.
676 + #
677 + send_gdb "set should_exit=1\n"
678 + gdb_expect {
679 + -re "$gdb_prompt $" {pass "after attach2, set should_exit"}
680 + timeout {fail "(timeout) after attach2, set should_exit"}
681 + }
682 +
683 + # Verify that the modification really happened.
684 + #
685 + send_gdb "tbreak 19\n"
686 + gdb_expect {
687 + -re "reakpoint .*at.*$srcfile, line 19.*$gdb_prompt $"\
688 + {pass "after attach2, set tbreak postloop"}
689 + -re "$gdb_prompt $" {fail "after attach2, set tbreak postloop"}
690 + timeout {fail "(timeout) after attach2, set tbreak postloop"}
691 + }
692 + send_gdb "continue\n"
693 + gdb_expect {
694 + -re "main.*at.*$srcfile:19.*$gdb_prompt $"\
695 + {pass "after attach2, reach tbreak postloop"}
696 + -re "$gdb_prompt $" {fail "after attach2, reach tbreak postloop"}
697 + timeout {fail "(timeout) after attach2, reach tbreak postloop"}
698 + }
699 +
700 + # Allow the test process to exit, to cleanup after ourselves.
701 + #
702 + gdb_test "continue" {\[Inferior .* exited normally\]} "after attach2, exit"
703 +
704 + # Make sure we don't leave a process around to confuse
705 + # the next test run (and prevent the compile by keeping
706 + # the text file busy), in case the "set should_exit" didn't
707 + # work.
708 + #
709 + remote_exec build "kill -9 ${testpid}"
710 + # Start the program running and then wait for a bit, to be sure
711 + # that it can be attached to.
712 + #
713 + set testpid [eval exec $binfile &]
714 + exec sleep 2
715 +
716 + # Verify that we can attach to the process, and find its a.out
717 + # when we're cd'd to some directory that doesn't contain the
718 + # a.out. (We use the source path set by the "dir" command.)
719 + #
720 + send_gdb "dir ${objdir}/${subdir}\n"
721 + gdb_expect {
722 + -re ".*Source directories searched: .*$gdb_prompt $"\
723 + {pass "set source path"}
724 + -re "$gdb_prompt $" {fail "set source path"}
725 + timeout {fail "(timeout) set source path"}
726 + }
727 +
728 + send_gdb "cd /tmp\n"
729 + gdb_expect {
730 + -re ".*Working directory /tmp.*$gdb_prompt $"\
731 + {pass "cd away from process' a.out"}
732 + -re "$gdb_prompt $" {fail "cd away from process' a.out"}
733 + timeout {fail "(timeout) cd away from process' a.out"}
734 + }
735 +
736 + # Explicitly flush out any knowledge of the previous attachment.
737 + send_gdb "symbol\n"
738 + gdb_expect {
739 + -re ".*Discard symbol table from.*y or n. $"\
740 + {send_gdb "y\n"
741 + gdb_expect {
742 + -re ".*No symbol file now.*$gdb_prompt $"\
743 + {pass "before attach3, flush symbols"}
744 + -re "$gdb_prompt $" {fail "before attach3, flush symbols"}
745 + timeout {fail "(timeout) before attach3, flush symbols"}
746 + }
747 + }
748 + -re ".*No symbol file now.*$gdb_prompt $"\
749 + {pass "before attach3, flush symbols"}
750 + -re "$gdb_prompt $" {fail "before attach3, flush symbols"}
751 + timeout {fail "(timeout) before attach3, flush symbols"}
752 + }
753 + send_gdb "exec\n"
754 + gdb_expect {
755 + -re ".*No executable file now.*$gdb_prompt $"\
756 + {pass "before attach3, flush exec"}
757 + -re "$gdb_prompt $" {fail "before attach3, flush exec"}
758 + timeout {fail "(timeout) before attach3, flush exec"}
759 + }
760 +
761 + send_gdb "attach $testpid\n"
762 + gdb_expect {
763 + -re "Attaching to process $testpid.*Reading symbols from $escapedbinfile.*main.*at .*$gdb_prompt $"\
764 + {pass "attach when process' a.out not in cwd"}
765 + -re "$gdb_prompt $" {fail "attach when process' a.out not in cwd"}
766 + timeout {fail "(timeout) attach when process' a.out not in cwd"}
767 + }
768 +
769 + send_gdb "kill\n"
770 + gdb_expect {
771 + -re ".*Kill the program being debugged.*y or n. $"\
772 + {send_gdb "y\n"
773 + gdb_expect {
774 + -re "$gdb_prompt $" {pass "after attach3, exit"}
775 + timeout {fail "(timeout) after attach3, exit"}
776 + }
777 + }
778 + -re "$gdb_prompt $" {fail "after attach3, exit"}
779 + timeout {fail "(timeout) after attach3, exit"}
780 + }
781 +
782 + # Another "don't leave a process around"
783 + remote_exec build "kill -9 ${testpid}"
784 +}
785 +
786 +proc do_call_attach_tests {} {
787 + global gdb_prompt
788 + global binfile2
789 +
790 + # Start the program running and then wait for a bit, to be sure
791 + # that it can be attached to.
792 + #
793 + set testpid [eval exec $binfile2 &]
794 + exec sleep 2
795 +
796 + # Attach
797 + #
798 + gdb_test "file $binfile2" ".*" "force switch to gdb64, if necessary"
799 + send_gdb "attach $testpid\n"
800 + gdb_expect {
801 + -re ".*warning: reading register.*I.*O error.*$gdb_prompt $" {
802 + fail "attach call, read register 3 error"
803 + }
804 + -re "Attaching to.*process $testpid.*$gdb_prompt $" {
805 + # libc is relocated, not relocated, therefore not printed.
806 + pass "attach call"
807 + }
808 + -re "$gdb_prompt $" {fail "attach call"}
809 + timeout {fail "(timeout) attach call"}
810 + }
811 +
812 + # See if other registers are problems
813 + #
814 + send_gdb "i r r3\n"
815 + gdb_expect {
816 + -re ".*warning: reading register.*$gdb_prompt $" {
817 + pass "CHFts23490: known bug"
818 + }
819 + -re ".*r3.*$gdb_prompt $" {
820 + pass "Bug fixed, Yayyy!"
821 + }
822 + timeout { fail "timeout on info reg" }
823 + }
824 +
825 + # Get rid of the process
826 + #
827 + gdb_test "p should_exit = 1" ".*"
828 + gdb_test "c" {\[Inferior .* exited normally\]}
829 +
830 + # Be paranoid
831 + #
832 + remote_exec build "kill -9 ${testpid}"
833 +
834 +}
835 +
836 +
837 +# Start with a fresh gdb
838 +#
839 +gdb_exit
840 +gdb_start
841 +gdb_reinitialize_dir $srcdir/$subdir
842 +gdb_load ${binfile}
843 +
844 +# This is a test of gdb's ability to attach to a running process.
845 +#
846 +do_attach_tests
847 +
848 +# Test attaching when the target is inside a system call
849 +#
850 +gdb_exit
851 +gdb_start
852 +
853 +gdb_reinitialize_dir $srcdir/$subdir
854 +do_call_attach_tests
855 +
856 +return 0
857 Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/break.exp
858 ===================================================================
859 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
860 +++ gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/break.exp 2011-03-20 20:21:43.000000000 +0100
861 @@ -0,0 +1,966 @@
862 +# Copyright 1988, 1990, 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999,
863 +# 2000, 2002, 2003, 2004
864 +# Free Software Foundation, Inc.
865 +
866 +# This program is free software; you can redistribute it and/or modify
867 +# it under the terms of the GNU General Public License as published by
868 +# the Free Software Foundation; either version 2 of the License, or
869 +# (at your option) any later version.
870 +#
871 +# This program is distributed in the hope that it will be useful,
872 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
873 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
874 +# GNU General Public License for more details.
875 +#
876 +# You should have received a copy of the GNU General Public License
877 +# along with this program; if not, write to the Free Software
878 +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
879 +
880 +# Please email any bugs, comments, and/or additions to this file to:
881 +# bug-gdb@prep.ai.mit.edu
882 +
883 +# This file was written by Rob Savoye. (rob@cygnus.com)
884 +
885 +# Test the same stuff but with PIE executables
886 +
887 +set testfile "break"
888 +set srcfile ${testfile}.c
889 +set srcfile1 ${testfile}1.c
890 +set binfile ${objdir}/${subdir}/${testfile}
891 +
892 +if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}0.o" object {debug "additional_flags=-w -fpie -pie"}] != "" } {
893 + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
894 +}
895 +
896 +if { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${binfile}1.o" object {debug "additional_flags=-w -fpie -pie"}] != "" } {
897 + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
898 +}
899 +
900 +if { [gdb_compile "${binfile}0.o ${binfile}1.o" "${binfile}" executable {debug "additional_flags=-w -fpie -pie"}] != "" } {
901 + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
902 +}
903 +
904 +if [get_compiler_info ${binfile}] {
905 + return -1
906 +}
907 +
908 +gdb_exit
909 +gdb_start
910 +gdb_reinitialize_dir $srcdir/$subdir
911 +gdb_load ${binfile}
912 +
913 +if [target_info exists gdb_stub] {
914 + gdb_step_for_stub;
915 +}
916 +#
917 +# test simple breakpoint setting commands
918 +#
919 +
920 +# Test deleting all breakpoints when there are none installed,
921 +# GDB should not prompt for confirmation.
922 +# Note that gdb-init.exp provides a "delete_breakpoints" proc
923 +# for general use elsewhere.
924 +
925 +send_gdb "delete breakpoints\n"
926 +gdb_expect {
927 + -re "Delete all breakpoints.*$" {
928 + send_gdb "y\n"
929 + gdb_expect {
930 + -re "$gdb_prompt $" {
931 + fail "Delete all breakpoints when none (unexpected prompt)"
932 + }
933 + timeout { fail "Delete all breakpoints when none (timeout after unexpected prompt)" }
934 + }
935 + }
936 + -re ".*$gdb_prompt $" { pass "Delete all breakpoints when none" }
937 + timeout { fail "Delete all breakpoints when none (timeout)" }
938 +}
939 +
940 +#
941 +# test break at function
942 +#
943 +gdb_test "break main" \
944 + "Breakpoint.*at.* file .*$srcfile, line.*" \
945 + "breakpoint function"
946 +
947 +#
948 +# test break at quoted function
949 +#
950 +gdb_test "break \"marker2\"" \
951 + "Breakpoint.*at.* file .*$srcfile1, line.*" \
952 + "breakpoint quoted function"
953 +
954 +#
955 +# test break at function in file
956 +#
957 +gdb_test "break $srcfile:factorial" \
958 + "Breakpoint.*at.* file .*$srcfile, line.*" \
959 + "breakpoint function in file"
960 +
961 +set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
962 +
963 +#
964 +# test break at line number
965 +#
966 +# Note that the default source file is the last one whose source text
967 +# was printed. For native debugging, before we've executed the
968 +# program, this is the file containing main, but for remote debugging,
969 +# it's wherever the processor was stopped when we connected to the
970 +# board. So, to be sure, we do a list command.
971 +#
972 +gdb_test "list main" \
973 + ".*main \\(argc, argv, envp\\).*" \
974 + "use `list' to establish default source file"
975 +gdb_test "break $bp_location1" \
976 + "Breakpoint.*at.* file .*$srcfile, line $bp_location1\\." \
977 + "breakpoint line number"
978 +
979 +#
980 +# test duplicate breakpoint
981 +#
982 +gdb_test "break $bp_location1" \
983 + "Note: breakpoint \[0-9\]+ also set at pc.*Breakpoint \[0-9\]+ at.* file .*$srcfile, line $bp_location1\\." \
984 + "breakpoint duplicate"
985 +
986 +set bp_location2 [gdb_get_line_number "set breakpoint 2 here"]
987 +
988 +#
989 +# test break at line number in file
990 +#
991 +gdb_test "break $srcfile:$bp_location2" \
992 + "Breakpoint.*at.* file .*$srcfile, line $bp_location2\\." \
993 + "breakpoint line number in file"
994 +
995 +set bp_location3 [gdb_get_line_number "set breakpoint 3 here"]
996 +set bp_location4 [gdb_get_line_number "set breakpoint 4 here"]
997 +
998 +#
999 +# Test putting a break at the start of a multi-line if conditional.
1000 +# Verify the breakpoint was put at the start of the conditional.
1001 +#
1002 +gdb_test "break multi_line_if_conditional" \
1003 + "Breakpoint.*at.* file .*$srcfile, line $bp_location3\\." \
1004 + "breakpoint at start of multi line if conditional"
1005 +
1006 +gdb_test "break multi_line_while_conditional" \
1007 + "Breakpoint.*at.* file .*$srcfile, line $bp_location4\\." \
1008 + "breakpoint at start of multi line while conditional"
1009 +
1010 +set bp_location5 [gdb_get_line_number "set breakpoint 5 here"]
1011 +set bp_location6 [gdb_get_line_number "set breakpoint 6 here"]
1012 +
1013 +#
1014 +# check to see what breakpoints are set
1015 +#
1016 +if [target_info exists gdb_stub] {
1017 + set main_line $bp_location5
1018 +} else {
1019 + set main_line $bp_location6
1020 +}
1021 +
1022 +if {$hp_aCC_compiler} {
1023 + set proto "\\(int\\)"
1024 +} else {
1025 + set proto ""
1026 +}
1027 +
1028 +set bp_location7 [gdb_get_line_number "set breakpoint 7 here"]
1029 +set bp_location8 [gdb_get_line_number "set breakpoint 8 here" $srcfile1]
1030 +set bp_location9 [gdb_get_line_number "set breakpoint 9 here" $srcfile1]
1031 +
1032 +# Test a pending breakpoint in PIE executable does not crash later GDB.
1033 +gdb_breakpoint "non_existent_function" allow-pending
1034 +
1035 +gdb_test "info break" \
1036 + "Num\[ \]+Type\[ \]+Disp Enb Address\[ \]+What.*
1037 +\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$main_line.*
1038 +\[0-9\]+\[\t \]+breakpoint keep y.* in marker2 at .*$srcfile1:($bp_location8|$bp_location9).*
1039 +\[0-9\]+\[\t \]+breakpoint keep y.* in factorial$proto at .*$srcfile:$bp_location7.*
1040 +\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$bp_location1.*
1041 +\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$bp_location1.*
1042 +\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$bp_location2.*
1043 +\[0-9\]+\[\t \]+breakpoint keep y.* in multi_line_if_conditional at .*$srcfile:$bp_location3.*
1044 +\[0-9\]+\[\t \]+breakpoint keep y.* in multi_line_while_conditional at .*$srcfile:$bp_location4.*
1045 +\[0-9\]+\[\t \]+breakpoint keep y.* <PENDING> *non_existent_function" \
1046 + "breakpoint info"
1047 +
1048 +# FIXME: The rest of this test doesn't work with anything that can't
1049 +# handle arguments.
1050 +# Huh? There doesn't *appear* to be anything that passes arguments
1051 +# below.
1052 +if [istarget "mips-idt-*"] then {
1053 + return
1054 +}
1055 +
1056 +#
1057 +# run until the breakpoint at main is hit. For non-stubs-using targets.
1058 +#
1059 +if ![target_info exists use_gdb_stub] {
1060 + if [istarget "*-*-vxworks*"] then {
1061 + send_gdb "run vxmain \"2\"\n"
1062 + set timeout 120
1063 + verbose "Timeout is now $timeout seconds" 2
1064 + } else {
1065 + send_gdb "run\n"
1066 + }
1067 + gdb_expect {
1068 + -re "The program .* has been started already.*y or n. $" {
1069 + send_gdb "y\n"
1070 + exp_continue
1071 + }
1072 + -re "Starting program.*Breakpoint \[0-9\]+,.*main .*argc.*argv.* at .*$srcfile:$bp_location6.*$bp_location6\[\t \]+if .argc.* \{.*$gdb_prompt $"\
1073 + { pass "run until function breakpoint" }
1074 + -re ".*$gdb_prompt $" { fail "run until function breakpoint" }
1075 + timeout { fail "run until function breakpoint (timeout)" }
1076 + }
1077 +} else {
1078 + if ![target_info exists gdb_stub] {
1079 + gdb_test continue ".*Continuing\\..*Breakpoint \[0-9\]+, main \\(argc=.*, argv=.*, envp=.*\\) at .*$srcfile:$bp_location6.*$bp_location6\[\t \]+if .argc.*\{.*" "stub continue"
1080 + }
1081 +}
1082 +
1083 +#
1084 +# run until the breakpoint at a line number
1085 +#
1086 +gdb_test continue "Continuing\\..*Breakpoint \[0-9\]+, main \\(argc=.*, argv=.*, envp=.*\\) at .*$srcfile:$bp_location1.*$bp_location1\[\t \]+printf.*factorial.*" \
1087 + "run until breakpoint set at a line number"
1088 +
1089 +#
1090 +# Run until the breakpoint set in a function in a file
1091 +#
1092 +for {set i 6} {$i >= 1} {incr i -1} {
1093 + gdb_test continue "Continuing\\..*Breakpoint \[0-9\]+, factorial \\(value=$i\\) at .*$srcfile:$bp_location7.*$bp_location7\[\t \]+.*if .value > 1. \{.*" \
1094 + "run until file:function($i) breakpoint"
1095 +}
1096 +
1097 +#
1098 +# Run until the breakpoint set at a quoted function
1099 +#
1100 +gdb_test continue "Continuing\\..*Breakpoint \[0-9\]+, (0x\[0-9a-f\]+ in )?marker2 \\(a=43\\) at .*$srcfile1:($bp_location8|$bp_location9).*" \
1101 + "run until quoted breakpoint"
1102 +#
1103 +# run until the file:function breakpoint at a line number in a file
1104 +#
1105 +gdb_test continue "Continuing\\..*Breakpoint \[0-9\]+, main \\(argc=.*, argv=.*, envp=.*\\) at .*$srcfile:$bp_location2.*$bp_location2\[\t \]+argc = \\(argc == 12345\\);.*" \
1106 + "run until file:linenum breakpoint"
1107 +
1108 +# Test break at offset +1
1109 +set bp_location10 [gdb_get_line_number "set breakpoint 10 here"]
1110 +
1111 +gdb_test "break +1" \
1112 + "Breakpoint.*at.* file .*$srcfile, line $bp_location10\\." \
1113 + "breakpoint offset +1"
1114 +
1115 +# Check to see if breakpoint is hit when stepped onto
1116 +
1117 +gdb_test "step" \
1118 + ".*Breakpoint \[0-9\]+, main \\(argc=.*, argv=.*, envp=.*\\) at .*$srcfile:$bp_location10.*$bp_location10\[\t \]+return argc;.*breakpoint 10 here.*" \
1119 + "step onto breakpoint"
1120 +
1121 +#
1122 +# delete all breakpoints so we can start over, course this can be a test too
1123 +#
1124 +delete_breakpoints
1125 +
1126 +#
1127 +# test temporary breakpoint at function
1128 +#
1129 +
1130 +gdb_test "tbreak main" "reakpoint.*at.* file .*$srcfile, line.*" "Temporary breakpoint function"
1131 +
1132 +#
1133 +# test break at function in file
1134 +#
1135 +
1136 +gdb_test "tbreak $srcfile:factorial" "reakpoint.*at.* file .*$srcfile, line.*" \
1137 + "Temporary breakpoint function in file"
1138 +
1139 +#
1140 +# test break at line number
1141 +#
1142 +send_gdb "tbreak $bp_location1\n"
1143 +gdb_expect {
1144 + -re "reakpoint.*at.* file .*$srcfile, line $bp_location1.*$gdb_prompt $" { pass "Temporary breakpoint line number #1" }
1145 + -re ".*$gdb_prompt $" { pass "Temporary breakpoint line number #1" }
1146 + timeout { fail "breakpoint line number #1 (timeout)" }
1147 +}
1148 +
1149 +gdb_test "tbreak $bp_location6" "reakpoint.*at.* file .*$srcfile, line $bp_location6.*" "Temporary breakpoint line number #2"
1150 +
1151 +#
1152 +# test break at line number in file
1153 +#
1154 +send_gdb "tbreak $srcfile:$bp_location2\n"
1155 +gdb_expect {
1156 + -re "reakpoint.*at.* file .*$srcfile, line $bp_location2.*$gdb_prompt $" { pass "Temporary breakpoint line number in file #1" }
1157 + -re ".*$gdb_prompt $" { pass "Temporary breakpoint line number in file #1" }
1158 + timeout { fail "Temporary breakpoint line number in file #1 (timeout)" }
1159 +}
1160 +
1161 +set bp_location11 [gdb_get_line_number "set breakpoint 11 here"]
1162 +gdb_test "tbreak $srcfile:$bp_location11" "reakpoint.*at.* file .*$srcfile, line $bp_location11.*" "Temporary breakpoint line number in file #2"
1163 +
1164 +#
1165 +# check to see what breakpoints are set (temporary this time)
1166 +#
1167 +gdb_test "info break" "Num.*Type.*Disp Enb Address.*What.*\[\r\n\]
1168 +\[0-9\]+\[\t \]+breakpoint del.*y.*in main at .*$srcfile:$main_line.*\[\r\n\]
1169 +\[0-9\]+\[\t \]+breakpoint del.*y.*in factorial$proto at .*$srcfile:$bp_location7.*\[\r\n\]
1170 +\[0-9\]+\[\t \]+breakpoint del.*y.*in main at .*$srcfile:$bp_location1.*\[\r\n\]
1171 +\[0-9\]+\[\t \]+breakpoint del.*y.*in main at .*$srcfile:$bp_location6.*\[\r\n\]
1172 +\[0-9\]+\[\t \]+breakpoint del.*y.*in main at .*$srcfile:$bp_location2.*\[\r\n\]
1173 +\[0-9\]+\[\t \]+breakpoint del.*y.*in main at .*$srcfile:$bp_location11.*" \
1174 + "Temporary breakpoint info"
1175 +
1176 +
1177 +#***********
1178 +
1179 +# Verify that catchpoints for fork, vfork and exec don't trigger
1180 +# inappropriately. (There are no calls to those system functions
1181 +# in this test program.)
1182 +#
1183 +if ![runto_main] then { fail "break tests suppressed" }
1184 +
1185 +send_gdb "catch\n"
1186 +gdb_expect {
1187 + -re "Catch requires an event name.*$gdb_prompt $"\
1188 + {pass "catch requires an event name"}
1189 + -re "$gdb_prompt $"\
1190 + {fail "catch requires an event name"}
1191 + timeout {fail "(timeout) catch requires an event name"}
1192 +}
1193 +
1194 +
1195 +set name "set catch fork, never expected to trigger"
1196 +send_gdb "catch fork\n"
1197 +gdb_expect {
1198 + -re "Catchpoint \[0-9\]* .fork..*$gdb_prompt $"
1199 + {pass $name}
1200 + -re "Catch of fork not yet implemented.*$gdb_prompt $"
1201 + {pass $name}
1202 + -re "$gdb_prompt $"
1203 + {fail $name}
1204 + timeout {fail "(timeout) $name"}
1205 +}
1206 +
1207 +
1208 +set name "set catch vfork, never expected to trigger"
1209 +send_gdb "catch vfork\n"
1210 +
1211 +# If we are on HP-UX 10.20, we expect an error message to be
1212 +# printed if we type "catch vfork" at the gdb gdb_prompt. This is
1213 +# because on HP-UX 10.20, we cannot catch vfork events.
1214 +
1215 +if [istarget "hppa*-hp-hpux10.20"] then {
1216 + gdb_expect {
1217 + -re "Catch of vfork events not supported on HP-UX 10.20..*$gdb_prompt $"
1218 + {pass $name}
1219 + -re "$gdb_prompt $"
1220 + {fail $name}
1221 + timeout {fail "(timeout) $name"}
1222 + }
1223 +} else {
1224 + gdb_expect {
1225 + -re "Catchpoint \[0-9\]* .vfork..*$gdb_prompt $"
1226 + {pass $name}
1227 + -re "Catch of vfork not yet implemented.*$gdb_prompt $"
1228 + {pass $name}
1229 + -re "$gdb_prompt $"
1230 + {fail $name}
1231 + timeout {fail "(timeout) $name"}
1232 + }
1233 +}
1234 +
1235 +set name "set catch exec, never expected to trigger"
1236 +send_gdb "catch exec\n"
1237 +gdb_expect {
1238 + -re "Catchpoint \[0-9\]* .exec..*$gdb_prompt $"
1239 + {pass $name}
1240 + -re "Catch of exec not yet implemented.*$gdb_prompt $"
1241 + {pass $name}
1242 + -re "$gdb_prompt $" {fail $name}
1243 + timeout {fail "(timeout) $name"}
1244 +}
1245 +
1246 +# Verify that GDB responds gracefully when asked to set a breakpoint
1247 +# on a nonexistent source line.
1248 +#
1249 +send_gdb "break 999\n"
1250 +gdb_expect {
1251 + -re "No line 999 in file .*$gdb_prompt $"\
1252 + {pass "break on non-existent source line"}
1253 + -re "$gdb_prompt $"\
1254 + {fail "break on non-existent source line"}
1255 + timeout {fail "(timeout) break on non-existent source line"}
1256 +}
1257 +
1258 +# Run to the desired default location. If not positioned here, the
1259 +# tests below don't work.
1260 +#
1261 +gdb_test "until $bp_location1" "main .* at .*:$bp_location1.*" "until bp_location1"
1262 +
1263 +
1264 +# Verify that GDB allows one to just say "break", which is treated
1265 +# as the "default" breakpoint. Note that GDB gets cute when printing
1266 +# the informational message about other breakpoints at the same
1267 +# location. We'll hit that bird with this stone too.
1268 +#
1269 +send_gdb "break\n"
1270 +gdb_expect {
1271 + -re "Breakpoint \[0-9\]*.*$gdb_prompt $"\
1272 + {pass "break on default location, 1st time"}
1273 + -re "$gdb_prompt $"\
1274 + {fail "break on default location, 1st time"}
1275 + timeout {fail "(timeout) break on default location, 1st time"}
1276 +}
1277 +
1278 +send_gdb "break\n"
1279 +gdb_expect {
1280 + -re "Note: breakpoint \[0-9\]* also set at .*Breakpoint \[0-9\]*.*$gdb_prompt $"\
1281 + {pass "break on default location, 2nd time"}
1282 + -re "$gdb_prompt $"\
1283 + {fail "break on default location, 2nd time"}
1284 + timeout {fail "(timeout) break on default location, 2nd time"}
1285 +}
1286 +
1287 +send_gdb "break\n"
1288 +gdb_expect {
1289 + -re "Note: breakpoints \[0-9\]* and \[0-9\]* also set at .*Breakpoint \[0-9\]*.*$gdb_prompt $"\
1290 + {pass "break on default location, 3rd time"}
1291 + -re "$gdb_prompt $"\
1292 + {fail "break on default location, 3rd time"}
1293 + timeout {fail "(timeout) break on default location, 3rd time"}
1294 +}
1295 +
1296 +send_gdb "break\n"
1297 +gdb_expect {
1298 + -re "Note: breakpoints \[0-9\]*, \[0-9\]* and \[0-9\]* also set at .*Breakpoint \[0-9\]*.*$gdb_prompt $"\
1299 + {pass "break on default location, 4th time"}
1300 + -re "$gdb_prompt $"\
1301 + {fail "break on default location, 4th time"}
1302 + timeout {fail "(timeout) break on default location, 4th time"}
1303 +}
1304 +
1305 +# Verify that a "silent" breakpoint can be set, and that GDB is indeed
1306 +# "silent" about its triggering.
1307 +#
1308 +if ![runto_main] then { fail "break tests suppressed" }
1309 +
1310 +send_gdb "break $bp_location1\n"
1311 +gdb_expect {
1312 + -re "Breakpoint (\[0-9\]*) at .*, line $bp_location1.*$gdb_prompt $"\
1313 + {pass "set to-be-silent break bp_location1"}
1314 + -re "$gdb_prompt $"\
1315 + {fail "set to-be-silent break bp_location1"}
1316 + timeout {fail "(timeout) set to-be-silent break bp_location1"}
1317 +}
1318 +
1319 +send_gdb "commands $expect_out(1,string)\n"
1320 +send_gdb "silent\n"
1321 +send_gdb "end\n"
1322 +gdb_expect {
1323 + -re ".*$gdb_prompt $"\
1324 + {pass "set silent break bp_location1"}
1325 + timeout {fail "(timeout) set silent break bp_location1"}
1326 +}
1327 +
1328 +send_gdb "info break $expect_out(1,string)\n"
1329 +gdb_expect {
1330 + -re "\[0-9\]*\[ \t\]*breakpoint.*:$bp_location1\r\n\[ \t\]*silent.*$gdb_prompt $"\
1331 + {pass "info silent break bp_location1"}
1332 + -re "$gdb_prompt $"\
1333 + {fail "info silent break bp_location1"}
1334 + timeout {fail "(timeout) info silent break bp_location1"}
1335 +}
1336 +send_gdb "continue\n"
1337 +gdb_expect {
1338 + -re "Continuing.\r\n$gdb_prompt $"\
1339 + {pass "hit silent break bp_location1"}
1340 + -re "$gdb_prompt $"\
1341 + {fail "hit silent break bp_location1"}
1342 + timeout {fail "(timeout) hit silent break bp_location1"}
1343 +}
1344 +send_gdb "bt\n"
1345 +gdb_expect {
1346 + -re "#0 main .* at .*:$bp_location1.*$gdb_prompt $"\
1347 + {pass "stopped for silent break bp_location1"}
1348 + -re "$gdb_prompt $"\
1349 + {fail "stopped for silent break bp_location1"}
1350 + timeout {fail "(timeout) stopped for silent break bp_location1"}
1351 +}
1352 +
1353 +# Verify that GDB can at least parse a breakpoint with the
1354 +# "thread" keyword. (We won't attempt to test here that a
1355 +# thread-specific breakpoint really triggers appropriately.
1356 +# The gdb.threads subdirectory contains tests for that.)
1357 +#
1358 +set bp_location12 [gdb_get_line_number "set breakpoint 12 here"]
1359 +send_gdb "break $bp_location12 thread 999\n"
1360 +gdb_expect {
1361 + -re "Unknown thread 999.*$gdb_prompt $"\
1362 + {pass "thread-specific breakpoint on non-existent thread disallowed"}
1363 + -re "$gdb_prompt $"\
1364 + {fail "thread-specific breakpoint on non-existent thread disallowed"}
1365 + timeout {fail "(timeout) thread-specific breakpoint on non-existent thread disallowed"}
1366 +}
1367 +send_gdb "break $bp_location12 thread foo\n"
1368 +gdb_expect {
1369 + -re "Junk after thread keyword..*$gdb_prompt $"\
1370 + {pass "thread-specific breakpoint on bogus thread ID disallowed"}
1371 + -re "$gdb_prompt $"\
1372 + {fail "thread-specific breakpoint on bogus thread ID disallowed"}
1373 + timeout {fail "(timeout) thread-specific breakpoint on bogus thread ID disallowed"}
1374 +}
1375 +
1376 +# Verify that GDB responds gracefully to a breakpoint command with
1377 +# trailing garbage.
1378 +#
1379 +send_gdb "break $bp_location12 foo\n"
1380 +gdb_expect {
1381 + -re "Junk at end of arguments..*$gdb_prompt $"\
1382 + {pass "breakpoint with trailing garbage disallowed"}
1383 + -re "$gdb_prompt $"\
1384 + {fail "breakpoint with trailing garbage disallowed"}
1385 + timeout {fail "(timeout) breakpoint with trailing garbage disallowed"}
1386 +}
1387 +
1388 +# Verify that GDB responds gracefully to a "clear" command that has
1389 +# no matching breakpoint. (First, get us off the current source line,
1390 +# which we know has a breakpoint.)
1391 +#
1392 +send_gdb "next\n"
1393 +gdb_expect {
1394 + -re ".*$gdb_prompt $"\
1395 + {pass "step over breakpoint"}
1396 + timeout {fail "(timeout) step over breakpoint"}
1397 +}
1398 +send_gdb "clear 81\n"
1399 +gdb_expect {
1400 + -re "No breakpoint at 81..*$gdb_prompt $"\
1401 + {pass "clear line has no breakpoint disallowed"}
1402 + -re "$gdb_prompt $"\
1403 + {fail "clear line has no breakpoint disallowed"}
1404 + timeout {fail "(timeout) clear line has no breakpoint disallowed"}
1405 +}
1406 +send_gdb "clear\n"
1407 +gdb_expect {
1408 + -re "No breakpoint at this line..*$gdb_prompt $"\
1409 + {pass "clear current line has no breakpoint disallowed"}
1410 + -re "$gdb_prompt $"\
1411 + {fail "clear current line has no breakpoint disallowed"}
1412 + timeout {fail "(timeout) clear current line has no breakpoint disallowed"}
1413 +}
1414 +
1415 +# Verify that we can set and clear multiple breakpoints.
1416 +#
1417 +# We don't test that it deletes the correct breakpoints. We do at
1418 +# least test that it deletes more than one breakpoint.
1419 +#
1420 +gdb_test "break marker3" "Breakpoint.*at.*" "break marker3 #1"
1421 +gdb_test "break marker3" "Breakpoint.*at.*" "break marker3 #2"
1422 +gdb_test "clear marker3" {Deleted breakpoints [0-9]+ [0-9]+.*}
1423 +
1424 +# Verify that a breakpoint can be set via a convenience variable.
1425 +#
1426 +send_gdb "set \$foo=$bp_location11\n"
1427 +gdb_expect {
1428 + -re "$gdb_prompt $"\
1429 + {pass "set convenience variable \$foo to bp_location11"}
1430 + timeout {fail "(timeout) set convenience variable \$foo to bp_location11"}
1431 +}
1432 +send_gdb "break \$foo\n"
1433 +gdb_expect {
1434 + -re "Breakpoint (\[0-9\]*) at .*, line $bp_location11.*$gdb_prompt $"\
1435 + {pass "set breakpoint via convenience variable"}
1436 + -re "$gdb_prompt $"\
1437 + {fail "set breakpoint via convenience variable"}
1438 + timeout {fail "(timeout) set breakpoint via convenience variable"}
1439 +}
1440 +
1441 +# Verify that GDB responds gracefully to an attempt to set a
1442 +# breakpoint via a convenience variable whose type is not integer.
1443 +#
1444 +send_gdb "set \$foo=81.5\n"
1445 +gdb_expect {
1446 + -re "$gdb_prompt $"\
1447 + {pass "set convenience variable \$foo to 81.5"}
1448 + timeout {fail "(timeout) set convenience variable \$foo to 81.5"}
1449 +}
1450 +send_gdb "break \$foo\n"
1451 +gdb_expect {
1452 + -re "Convenience variables used in line specs must have integer values..*$gdb_prompt $"\
1453 + {pass "set breakpoint via non-integer convenience variable disallowed"}
1454 + -re "$gdb_prompt $"\
1455 + {fail "set breakpoint via non-integer convenience variable disallowed"}
1456 + timeout {fail "(timeout) set breakpoint via non-integer convenience variable disallowed"}
1457 +}
1458 +
1459 +# Verify that we can set and trigger a breakpoint in a user-called function.
1460 +#
1461 +send_gdb "break marker2\n"
1462 +gdb_expect {
1463 + -re "Breakpoint (\[0-9\]*) at .*, line ($bp_location8|$bp_location9).*$gdb_prompt $"\
1464 + {pass "set breakpoint on to-be-called function"}
1465 + -re "$gdb_prompt $"\
1466 + {fail "set breakpoint on to-be-called function"}
1467 + timeout {fail "(timeout) set breakpoint on to-be-called function"}
1468 +}
1469 +send_gdb "print marker2(99)\n"
1470 +gdb_expect {
1471 + -re "The program being debugged stopped while in a function called from GDB.\r\nEvaluation of the expression containing the function\r\n.marker2$proto. will be abandoned.\r\nWhen the function is done executing, GDB will silently stop.\r\n$gdb_prompt $"\
1472 + {pass "hit breakpoint on called function"}
1473 + -re "$gdb_prompt $"\
1474 + {fail "hit breakpoint on called function"}
1475 + timeout {fail "(timeout) hit breakpoint on called function"}
1476 +}
1477 +
1478 +# As long as we're stopped (breakpointed) in a called function,
1479 +# verify that we can successfully backtrace & such from here.
1480 +#
1481 +# In this and the following test, the _sr4export check apparently is needed
1482 +# for hppa*-*-hpux.
1483 +#
1484 +send_gdb "bt\n"
1485 +gdb_expect {
1486 + -re "#0\[ \t\]*($hex in )?marker2.*:($bp_location8|$bp_location9)\r\n#1.*_sr4export.*$gdb_prompt $"\
1487 + {pass "backtrace while in called function"}
1488 + -re "#0\[ \t\]*($hex in )?marker2.*:($bp_location8|$bp_location9)\r\n#1.*function called from gdb.*$gdb_prompt $"\
1489 + {pass "backtrace while in called function"}
1490 + -re "$gdb_prompt $"\
1491 + {fail "backtrace while in called function"}
1492 + timeout {fail "(timeout) backtrace while in called function"}
1493 +}
1494 +
1495 +# Return from the called function. For remote targets, it's important to do
1496 +# this before runto_main, which otherwise may silently stop on the dummy
1497 +# breakpoint inserted by GDB at the program's entry point.
1498 +#
1499 +send_gdb "finish\n"
1500 +gdb_expect {
1501 + -re "Run till exit from .*marker2.* at .*($bp_location8|$bp_location9)\r\n.* in _sr4export.*$gdb_prompt $"\
1502 + {pass "finish from called function"}
1503 + -re "Run till exit from .*marker2.* at .*($bp_location8|$bp_location9)\r\n.*function called from gdb.*$gdb_prompt $"\
1504 + {pass "finish from called function"}
1505 + -re "Run till exit from .*marker2.* at .*($bp_location8|$bp_location9)\r\n.*Value returned.*$gdb_prompt $"\
1506 + {pass "finish from called function"}
1507 + -re "$gdb_prompt $"\
1508 + {fail "finish from called function"}
1509 + timeout {fail "(timeout) finish from called function"}
1510 +}
1511 +
1512 +# Verify that GDB responds gracefully to a "finish" command with
1513 +# arguments.
1514 +#
1515 +if ![runto_main] then { fail "break tests suppressed" }
1516 +
1517 +send_gdb "finish 123\n"
1518 +gdb_expect {
1519 + -re "The \"finish\" command does not take any arguments.\r\n$gdb_prompt $"\
1520 + {pass "finish with arguments disallowed"}
1521 + -re "$gdb_prompt $"\
1522 + {fail "finish with arguments disallowed"}
1523 + timeout {fail "(timeout) finish with arguments disallowed"}
1524 +}
1525 +
1526 +# Verify that GDB responds gracefully to a request to "finish" from
1527 +# the outermost frame. On a stub that never exits, this will just
1528 +# run to the stubs routine, so we don't get this error... Thus the
1529 +# second condition.
1530 +#
1531 +
1532 +send_gdb "finish\n"
1533 +gdb_expect {
1534 + -re "\"finish\" not meaningful in the outermost frame.\r\n$gdb_prompt $"\
1535 + {pass "finish from outermost frame disallowed"}
1536 + -re "Run till exit from.*\r\n$gdb_prompt $" {
1537 + pass "finish from outermost frame disallowed"
1538 + }
1539 + -re "$gdb_prompt $"\
1540 + {fail "finish from outermost frame disallowed"}
1541 + timeout {fail "(timeout) finish from outermost frame disallowed"}
1542 +}
1543 +
1544 +# Verify that we can explicitly ask GDB to stop on all shared library
1545 +# events, and that it does so.
1546 +#
1547 +if [istarget "hppa*-*-hpux*"] then {
1548 + if ![runto_main] then { fail "break tests suppressed" }
1549 +
1550 + send_gdb "set stop-on-solib-events 1\n"
1551 + gdb_expect {
1552 + -re "$gdb_prompt $"\
1553 + {pass "set stop-on-solib-events"}
1554 + timeout {fail "(timeout) set stop-on-solib-events"}
1555 + }
1556 +
1557 + send_gdb "run\n"
1558 + gdb_expect {
1559 + -re ".*Start it from the beginning.*y or n. $"\
1560 + {send_gdb "y\n"
1561 + gdb_expect {
1562 + -re ".*Stopped due to shared library event.*$gdb_prompt $"\
1563 + {pass "triggered stop-on-solib-events"}
1564 + -re "$gdb_prompt $"\
1565 + {fail "triggered stop-on-solib-events"}
1566 + timeout {fail "(timeout) triggered stop-on-solib-events"}
1567 + }
1568 + }
1569 + -re "$gdb_prompt $"\
1570 + {fail "rerun for stop-on-solib-events"}
1571 + timeout {fail "(timeout) rerun for stop-on-solib-events"}
1572 + }
1573 +
1574 + send_gdb "set stop-on-solib-events 0\n"
1575 + gdb_expect {
1576 + -re "$gdb_prompt $"\
1577 + {pass "reset stop-on-solib-events"}
1578 + timeout {fail "(timeout) reset stop-on-solib-events"}
1579 + }
1580 +}
1581 +
1582 +# Hardware breakpoints are unsupported on HP-UX. Verify that GDB
1583 +# gracefully responds to requests to create them.
1584 +#
1585 +if [istarget "hppa*-*-hpux*"] then {
1586 + if ![runto_main] then { fail "break tests suppressed" }
1587 +
1588 + send_gdb "hbreak\n"
1589 + gdb_expect {
1590 + -re "No hardware breakpoint support in the target.*$gdb_prompt $"\
1591 + {pass "hw breaks disallowed"}
1592 + -re "$gdb_prompt $"\
1593 + {fail "hw breaks disallowed"}
1594 + timeout {fail "(timeout) hw breaks disallowed"}
1595 + }
1596 +
1597 + send_gdb "thbreak\n"
1598 + gdb_expect {
1599 + -re "No hardware breakpoint support in the target.*$gdb_prompt $"\
1600 + {pass "temporary hw breaks disallowed"}
1601 + -re "$gdb_prompt $"\
1602 + {fail "temporary hw breaks disallowed"}
1603 + timeout {fail "(timeout) temporary hw breaks disallowed"}
1604 + }
1605 +}
1606 +
1607 +#********
1608 +
1609 +
1610 +#
1611 +# Test "next" over recursive function call.
1612 +#
1613 +
1614 +proc test_next_with_recursion {} {
1615 + global gdb_prompt
1616 + global decimal
1617 + global binfile
1618 +
1619 + if [target_info exists use_gdb_stub] {
1620 + # Reload the program.
1621 + delete_breakpoints
1622 + gdb_load ${binfile};
1623 + } else {
1624 + # FIXME: should be using runto
1625 + gdb_test "kill" "" "kill program" "Kill the program being debugged.*y or n. $" "y"
1626 +
1627 + delete_breakpoints
1628 + }
1629 +
1630 + gdb_test "break factorial" "Breakpoint $decimal at .*" "break at factorial"
1631 +
1632 + # Run until we call factorial with 6
1633 +
1634 + if [istarget "*-*-vxworks*"] then {
1635 + send_gdb "run vxmain \"6\"\n"
1636 + } else {
1637 + gdb_run_cmd
1638 + }
1639 + gdb_expect {
1640 + -re "Break.* factorial .value=6. .*$gdb_prompt $" {}
1641 + -re ".*$gdb_prompt $" {
1642 + fail "run to factorial(6)";
1643 + gdb_suppress_tests;
1644 + }
1645 + timeout { fail "run to factorial(6) (timeout)" ; gdb_suppress_tests }
1646 + }
1647 +
1648 + # Continue until we call factorial recursively with 5.
1649 +
1650 + if [gdb_test "continue" \
1651 + "Continuing.*Break.* factorial .value=5. .*" \
1652 + "continue to factorial(5)"] then { gdb_suppress_tests }
1653 +
1654 + # Do a backtrace just to confirm how many levels deep we are.
1655 +
1656 + if [gdb_test "backtrace" \
1657 + "#0\[ \t\]+ factorial .value=5..*" \
1658 + "backtrace from factorial(5)"] then { gdb_suppress_tests }
1659 +
1660 + # Now a "next" should position us at the recursive call, which
1661 + # we will be performing with 4.
1662 +
1663 + if [gdb_test "next" \
1664 + ".* factorial .value - 1.;.*" \
1665 + "next to recursive call"] then { gdb_suppress_tests }
1666 +
1667 + # Disable the breakpoint at the entry to factorial by deleting them all.
1668 + # The "next" should run until we return to the next line from this
1669 + # recursive call to factorial with 4.
1670 + # Buggy versions of gdb will stop instead at the innermost frame on
1671 + # the line where we are trying to "next" to.
1672 +
1673 + delete_breakpoints
1674 +
1675 + if [istarget "mips*tx39-*"] {
1676 + set timeout 60
1677 + }
1678 + # We used to set timeout here for all other targets as well. This
1679 + # is almost certainly wrong. The proper timeout depends on the
1680 + # target system in use, and how we communicate with it, so there
1681 + # is no single value appropriate for all targets. The timeout
1682 + # should be established by the Dejagnu config file(s) for the
1683 + # board, and respected by the test suite.
1684 + #
1685 + # For example, if I'm running GDB over an SSH tunnel talking to a
1686 + # portmaster in California talking to an ancient 68k board running
1687 + # a crummy ROM monitor (a situation I can only wish were
1688 + # hypothetical), then I need a large timeout. But that's not the
1689 + # kind of knowledge that belongs in this file.
1690 +
1691 + gdb_test next "\[0-9\]*\[\t \]+return \\(value\\);.*" \
1692 + "next over recursive call"
1693 +
1694 + # OK, we should be back in the same stack frame we started from.
1695 + # Do a backtrace just to confirm.
1696 +
1697 + set result [gdb_test "backtrace" \
1698 + "#0\[ \t\]+ factorial .value=120.*\r\n#1\[ \t\]+ \[0-9a-fx\]+ in factorial .value=6..*" \
1699 + "backtrace from factorial(5.1)"]
1700 + if { $result != 0 } { gdb_suppress_tests }
1701 +
1702 + if [target_info exists gdb,noresults] { gdb_suppress_tests }
1703 + gdb_continue_to_end "recursive next test"
1704 + gdb_stop_suppressing_tests;
1705 +}
1706 +
1707 +test_next_with_recursion
1708 +
1709 +
1710 +#********
1711 +
1712 +# build a new file with optimization enabled so that we can try breakpoints
1713 +# on targets with optimized prologues
1714 +
1715 +set binfileo2 ${objdir}/${subdir}/${testfile}o2
1716 +
1717 +if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}O0.o" object {debug "additional_flags=-w -O2 -fpie -pie"}] != "" } {
1718 + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
1719 +}
1720 +
1721 +if { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${binfile}O1.o" object {debug "additional_flags=-w -O2 -fpie -pie"}] != "" } {
1722 + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
1723 +}
1724 +
1725 +if { [gdb_compile "${binfile}O0.o ${binfile}O1.o" "${binfileo2}" executable {debug "additional_flags=-w -fpie -pie"}] != "" } {
1726 + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
1727 +}
1728 +
1729 +if [get_compiler_info ${binfileo2}] {
1730 + return -1
1731 +}
1732 +
1733 +gdb_exit
1734 +gdb_start
1735 +gdb_reinitialize_dir $srcdir/$subdir
1736 +gdb_load ${binfileo2}
1737 +
1738 +if [target_info exists gdb_stub] {
1739 + gdb_step_for_stub;
1740 +}
1741 +
1742 +#
1743 +# test break at function
1744 +#
1745 +gdb_test "break main" \
1746 + "Breakpoint.*at.* file .*$srcfile, line.*" \
1747 + "breakpoint function, optimized file"
1748 +
1749 +#
1750 +# test break at function
1751 +#
1752 +gdb_test "break marker4" \
1753 + "Breakpoint.*at.* file .*$srcfile1, line.*" \
1754 + "breakpoint small function, optimized file"
1755 +
1756 +#
1757 +# run until the breakpoint at main is hit. For non-stubs-using targets.
1758 +#
1759 +if ![target_info exists use_gdb_stub] {
1760 + if [istarget "*-*-vxworks*"] then {
1761 + send_gdb "run vxmain \"2\"\n"
1762 + set timeout 120
1763 + verbose "Timeout is now $timeout seconds" 2
1764 + } else {
1765 + send_gdb "run\n"
1766 + }
1767 + gdb_expect {
1768 + -re "The program .* has been started already.*y or n. $" {
1769 + send_gdb "y\n"
1770 + exp_continue
1771 + }
1772 + -re "Starting program.*Breakpoint \[0-9\]+,.*main .*argc.*argv.* at .*$srcfile:$bp_location6.*$bp_location6\[\t \]+if .argc.* \{.*$gdb_prompt $"\
1773 + { pass "run until function breakpoint, optimized file" }
1774 + -re "Starting program.*Breakpoint \[0-9\]+,.*main .*argc.*argv.* at .*$gdb_prompt $"\
1775 + { pass "run until function breakpoint, optimized file (code motion)" }
1776 + -re ".*$gdb_prompt $" { fail "run until function breakpoint, optimized file" }
1777 + timeout { fail "run until function breakpoint, optimized file (timeout)" }
1778 + }
1779 +} else {
1780 + if ![target_info exists gdb_stub] {
1781 + gdb_test continue ".*Continuing\\..*Breakpoint \[0-9\]+, main \\(argc=.*, argv=.*, envp=.*\\) at .*$srcfile:$bp_location6.*$bp_location6\[\t \]+if .argc.*\{.*" "stub continue, optimized file"
1782 + }
1783 +}
1784 +
1785 +#
1786 +# run until the breakpoint at a small function
1787 +#
1788 +
1789 +#
1790 +# Add a second pass pattern. The behavior differs here between stabs
1791 +# and dwarf for one-line functions. Stabs preserves two line symbols
1792 +# (one before the prologue and one after) with the same line number,
1793 +# but dwarf regards these as duplicates and discards one of them.
1794 +# Therefore the address after the prologue (where the breakpoint is)
1795 +# has no exactly matching line symbol, and GDB reports the breakpoint
1796 +# as if it were in the middle of a line rather than at the beginning.
1797 +
1798 +set bp_location13 [gdb_get_line_number "set breakpoint 13 here" $srcfile1]
1799 +set bp_location14 [gdb_get_line_number "set breakpoint 14 here" $srcfile1]
1800 +send_gdb "continue\n"
1801 +gdb_expect {
1802 + -re "Breakpoint $decimal, marker4 \\(d=177601976\\) at .*$srcfile1:$bp_location13\[\r\n\]+$bp_location13\[\t \]+void marker4.*" {
1803 + pass "run until breakpoint set at small function, optimized file"
1804 + }
1805 + -re "Breakpoint $decimal, $hex in marker4 \\(d=177601976\\) at .*$srcfile1:$bp_location13\[\r\n\]+$bp_location13\[\t \]+void marker4.*" {
1806 + pass "run until breakpoint set at small function, optimized file"
1807 + }
1808 + -re "Breakpoint $decimal, marker4 \\(d=177601976\\) at .*$srcfile1:$bp_location14\[\r\n\]+$bp_location14\[\t \]+void marker4.*" {
1809 + # marker4() is defined at line 46 when compiled with -DPROTOTYPES
1810 + pass "run until breakpoint set at small function, optimized file (line bp_location14)"
1811 + }
1812 + -re ".*$gdb_prompt " {
1813 + fail "run until breakpoint set at small function, optimized file"
1814 + }
1815 + timeout {
1816 + fail "run until breakpoint set at small function, optimized file (timeout)"
1817 + }
1818 +}
1819 +
1820 +
1821 +# Reset the default arguments for VxWorks
1822 +if [istarget "*-*-vxworks*"] {
1823 + set timeout 10
1824 + verbose "Timeout is now $timeout seconds" 2
1825 + send_gdb "set args main\n"
1826 + gdb_expect -re ".*$gdb_prompt $" {}
1827 +}
1828 Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/corefile.exp
1829 ===================================================================
1830 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
1831 +++ gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/corefile.exp 2011-03-20 20:21:43.000000000 +0100
1832 @@ -0,0 +1,233 @@
1833 +# Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
1834 +# Free Software Foundation, Inc.
1835 +
1836 +# This program is free software; you can redistribute it and/or modify
1837 +# it under the terms of the GNU General Public License as published by
1838 +# the Free Software Foundation; either version 2 of the License, or
1839 +# (at your option) any later version.
1840 +#
1841 +# This program is distributed in the hope that it will be useful,
1842 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
1843 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1844 +# GNU General Public License for more details.
1845 +#
1846 +# You should have received a copy of the GNU General Public License
1847 +# along with this program; if not, write to the Free Software
1848 +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1849 +
1850 +# This file was written by Fred Fish. (fnf@cygnus.com)
1851 +
1852 +# are we on a target board
1853 +if ![isnative] then {
1854 + return
1855 +}
1856 +
1857 +set testfile "coremaker"
1858 +set srcfile ${testfile}.c
1859 +set binfile ${objdir}/${subdir}/${testfile}
1860 +if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug "additional_flags=-fpie -pie"}] != "" } {
1861 + gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
1862 +}
1863 +
1864 +# Create and source the file that provides information about the compiler
1865 +# used to compile the test case.
1866 +if [get_compiler_info ${binfile}] {
1867 + return -1;
1868 +}
1869 +
1870 +# Create a core file named "corefile" rather than just "core", to
1871 +# avoid problems with sys admin types that like to regularly prune all
1872 +# files named "core" from the system.
1873 +#
1874 +# Arbitrarily try setting the core size limit to "unlimited" since
1875 +# this does not hurt on systems where the command does not work and
1876 +# allows us to generate a core on systems where it does.
1877 +#
1878 +# Some systems append "core" to the name of the program; others append
1879 +# the name of the program to "core"; still others (like Linux, as of
1880 +# May 2003) create cores named "core.PID". In the latter case, we
1881 +# could have many core files lying around, and it may be difficult to
1882 +# tell which one is ours, so let's run the program in a subdirectory.
1883 +set found 0
1884 +set coredir "${objdir}/${subdir}/coredir.[getpid]"
1885 +file mkdir $coredir
1886 +catch "system \"(cd ${coredir}; ulimit -c unlimited; ${binfile}; true) >/dev/null 2>&1\""
1887 +# remote_exec host "${binfile}"
1888 +foreach i "${coredir}/core ${coredir}/core.coremaker.c ${binfile}.core" {
1889 + if [remote_file build exists $i] {
1890 + remote_exec build "mv $i ${objdir}/${subdir}/corefile"
1891 + set found 1
1892 + }
1893 +}
1894 +# Check for "core.PID".
1895 +if { $found == 0 } {
1896 + set names [glob -nocomplain -directory $coredir core.*]
1897 + if {[llength $names] == 1} {
1898 + set corefile [file join $coredir [lindex $names 0]]
1899 + remote_exec build "mv $corefile ${objdir}/${subdir}/corefile"
1900 + set found 1
1901 + }
1902 +}
1903 +if { $found == 0 } {
1904 + # The braindamaged HPUX shell quits after the ulimit -c above
1905 + # without executing ${binfile}. So we try again without the
1906 + # ulimit here if we didn't find a core file above.
1907 + # Oh, I should mention that any "braindamaged" non-Unix system has
1908 + # the same problem. I like the cd bit too, it's really neat'n stuff.
1909 + catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
1910 + foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
1911 + if [remote_file build exists $i] {
1912 + remote_exec build "mv $i ${objdir}/${subdir}/corefile"
1913 + set found 1
1914 + }
1915 + }
1916 +}
1917 +
1918 +# Try to clean up after ourselves.
1919 +remote_file build delete [file join $coredir coremmap.data]
1920 +remote_exec build "rmdir $coredir"
1921 +
1922 +if { $found == 0 } {
1923 + warning "can't generate a core file - core tests suppressed - check ulimit -c"
1924 + return 0
1925 +}
1926 +
1927 +#
1928 +# Test that we can simply startup with a "-core=corefile" command line arg
1929 +# and recognize that the core file is a valid, usable core file.
1930 +# To do this, we must shutdown the currently running gdb and restart
1931 +# with the -core args. We can't use gdb_start because it looks for
1932 +# the first gdb prompt, and the message we are looking for occurs
1933 +# before the first prompt. Also, we can't include GDBFLAGS because
1934 +# if it is empty, this confuses gdb with an empty argument that it
1935 +# grumbles about (said grumbling currently being ignored in gdb_start).
1936 +# **FIXME**
1937 +#
1938 +# Another problem is that on some systems (solaris for example), there
1939 +# is apparently a limit on the length of a fully specified path to
1940 +# the coremaker executable, at about 80 chars. For this case, consider
1941 +# it a pass, but note that the program name is bad.
1942 +
1943 +gdb_exit
1944 +if $verbose>1 then {
1945 + send_user "Spawning $GDB -nw $GDBFLAGS -core=$objdir/$subdir/corefile\n"
1946 +}
1947 +
1948 +set oldtimeout $timeout
1949 +set timeout [expr "$timeout + 60"]
1950 +verbose "Timeout is now $timeout seconds" 2
1951 +eval "spawn $GDB -nw $GDBFLAGS -core=$objdir/$subdir/corefile"
1952 +expect {
1953 + -re "Couldn't find .* registers in core file.*$gdb_prompt $" {
1954 + fail "args: -core=corefile (couldn't find regs)"
1955 + }
1956 + -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
1957 + pass "args: -core=corefile"
1958 + }
1959 + -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
1960 + pass "args: -core=corefile (with bad program name)"
1961 + }
1962 + -re ".*registers from core file: File in wrong format.* $" {
1963 + fail "args: -core=corefile (could not read registers from core file)"
1964 + }
1965 + -re ".*$gdb_prompt $" { fail "args: -core=corefile" }
1966 + timeout { fail "(timeout) starting with -core" }
1967 +}
1968 +
1969 +
1970 +#
1971 +# Test that startup with both an executable file and -core argument.
1972 +# See previous comments above, they are still applicable.
1973 +#
1974 +
1975 +close;
1976 +
1977 +if $verbose>1 then {
1978 + send_user "Spawning $GDB -nw $GDBFLAGS $binfile -core=$objdir/$subdir/corefile\n"
1979 +}
1980 +
1981 +
1982 +eval "spawn $GDB -nw $GDBFLAGS $binfile -core=$objdir/$subdir/corefile";
1983 +expect {
1984 + -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
1985 + pass "args: execfile -core=corefile"
1986 + }
1987 + -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
1988 + pass "args: execfile -core=corefile (with bad program name)"
1989 + }
1990 + -re ".*registers from core file: File in wrong format.* $" {
1991 + fail "args: execfile -core=corefile (could not read registers from core file)"
1992 + }
1993 + -re ".*$gdb_prompt $" { fail "args: execfile -core=corefile" }
1994 + timeout { fail "(timeout) starting with -core" }
1995 +}
1996 +set timeout $oldtimeout
1997 +verbose "Timeout is now $timeout seconds" 2
1998 +
1999 +close;
2000 +
2001 +# Now restart normally.
2002 +
2003 +gdb_start
2004 +gdb_reinitialize_dir $srcdir/$subdir
2005 +gdb_load ${binfile}
2006 +
2007 +# Test basic corefile recognition via core-file command.
2008 +
2009 +send_gdb "core-file $objdir/$subdir/corefile\n"
2010 +gdb_expect {
2011 + -re ".* program is being debugged already.*y or n. $" {
2012 + # gdb_load may connect us to a gdbserver.
2013 + send_gdb "y\n"
2014 + exp_continue;
2015 + }
2016 + -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
2017 + pass "core-file command"
2018 + }
2019 + -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
2020 + pass "core-file command (with bad program name)"
2021 + }
2022 + -re ".*registers from core file: File in wrong format.* $" {
2023 + fail "core-file command (could not read registers from core file)"
2024 + }
2025 + -re ".*$gdb_prompt $" { fail "core-file command" }
2026 + timeout { fail "(timeout) core-file command" }
2027 +}
2028 +
2029 +# Test correct mapping of corefile sections by printing some variables.
2030 +
2031 +gdb_test "print coremaker_data" "\\\$$decimal = 202"
2032 +gdb_test "print coremaker_bss" "\\\$$decimal = 10"
2033 +gdb_test "print coremaker_ro" "\\\$$decimal = 201"
2034 +
2035 +gdb_test "print func2::coremaker_local" "\\\$$decimal = \\{0, 1, 2, 3, 4\\}"
2036 +
2037 +# Somehow we better test the ability to read the registers out of the core
2038 +# file correctly. I don't think the other tests do this.
2039 +
2040 +gdb_test "bt" "abort.*func2.*func1.*main.*" "backtrace in corefile.exp"
2041 +gdb_test "up" "#\[0-9\]* *\[0-9xa-fH'\]* in .* \\(.*\\).*" "up in corefile.exp"
2042 +
2043 +# Test ability to read mmap'd data
2044 +
2045 +gdb_test "x/8bd buf1" ".*:.*0.*1.*2.*3.*4.*5.*6.*7" "accessing original mmap data in core file"
2046 +setup_xfail "*-*-sunos*" "*-*-ultrix*" "*-*-aix*"
2047 +set test "accessing mmapped data in core file"
2048 +gdb_test_multiple "x/8bd buf2" "$test" {
2049 + -re ".*:.*0.*1.*2.*3.*4.*5.*6.*7.*$gdb_prompt $" {
2050 + pass "$test"
2051 + }
2052 + -re "0x\[f\]*:.*Cannot access memory at address 0x\[f\]*.*$gdb_prompt $" {
2053 + fail "$test (mapping failed at runtime)"
2054 + }
2055 + -re "0x.*:.*Cannot access memory at address 0x.*$gdb_prompt $" {
2056 + fail "$test (mapping address not found in core file)"
2057 + }
2058 +}
2059 +
2060 +# test reinit_frame_cache
2061 +
2062 +gdb_load ${binfile}
2063 +gdb_test "up" "#\[0-9\]* *\[0-9xa-fH'\]* in .* \\(.*\\).*" "up in corefile.exp (reinit)"
2064 +
2065 +gdb_test "core" "No core file now."
2066 Index: gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/Makefile.in
2067 ===================================================================
2068 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
2069 +++ gdb-7.2.50.20110320/gdb/testsuite/gdb.pie/Makefile.in 2011-03-20 20:21:43.000000000 +0100
2070 @@ -0,0 +1,19 @@
2071 +VPATH = @srcdir@
2072 +srcdir = @srcdir@
2073 +
2074 +EXECUTABLES =
2075 +MISCELLANEOUS = arch.inc
2076 +
2077 +all info install-info dvi install uninstall installcheck check:
2078 + @echo "Nothing to be done for $@..."
2079 +
2080 +clean mostlyclean:
2081 + -rm -f *~ *.o a.out *.x *.ci *.tmp
2082 + -rm -f core core.coremaker coremaker.core corefile $(EXECUTABLES)
2083 + -rm -f $(MISCELLANEOUS)
2084 +
2085 +distclean maintainer-clean realclean: clean
2086 + -rm -f *~ core
2087 + -rm -f Makefile config.status config.log
2088 + -rm -f *-init.exp
2089 + -rm -fr *.log summary detail *.plog *.sum *.psum site.*