Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [patch] testsuite fuzzy results fixup: foll-fork.exp
@ 2009-11-26 22:06 Jan Kratochvil
  2009-11-30 20:37 ` Tom Tromey
  2009-12-21  5:55 ` Joel Brobecker
  0 siblings, 2 replies; 4+ messages in thread
From: Jan Kratochvil @ 2009-11-26 22:06 UTC (permalink / raw)
  To: gdb-patches

Hi,

one occasional timeout:

 (gdb) PASS: gdb.base/foll-fork.exp: default show parent follow, no catchpoints
 next 2
-callee: 9949
 25       if (pid == 0) /* set breakpoint here */
-(gdb) PASS: gdb.base/foll-fork.exp: default parent follow, no catchpoints
+(gdb) callee: 18747
+FAIL: gdb.base/foll-fork.exp: (timeout) default parent follow, no catchpoints

Dropped the strings as there is no "callee" string expectation in
foll-fork.exp.


and with glibc-debuginfo installed one gets:

(gdb) break 39
Reading in symbols for ../nptl/sysdeps/unix/sysv/linux/fork.c...done.
Breakpoint 12 at 0x3ad22a4876: file ../nptl/sysdeps/unix/sysv/linux/fork.c, line 39.
(gdb) FAIL: gdb.base/foll-fork.exp: unpatch child, breakpoint at exit call
+
Breakpoint 12, __libc_fork () at ../nptl/sysdeps/unix/sysv/linux/fork.c:158
158           fresetlockfiles ();
(gdb) FAIL: gdb.base/foll-fork.exp: unpatch child, unpatched parent breakpoints from child (unknown output)


Thanks,
Jan


gdb/testsuite/
2009-11-26  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* gdb.base/foll-fork.exp (unpatch child, breakpoint at exit call):
	Force $srcfile file.
	* gdb.base/foll-fork.c (callee): Comment out the printf call.

--- a/gdb/testsuite/gdb.base/foll-fork.c
+++ b/gdb/testsuite/gdb.base/foll-fork.c
@@ -9,7 +9,8 @@ void callee (i)
   int  i;
 #endif
 {
-  printf("callee: %d\n", i);
+  /* Any output corrupts GDB CLI expect strings.
+     printf("callee: %d\n", i);  */
 }
 
 #ifdef PROTOTYPES
--- a/gdb/testsuite/gdb.base/foll-fork.exp
+++ b/gdb/testsuite/gdb.base/foll-fork.exp
@@ -240,7 +240,8 @@ proc catch_fork_unpatch_child {} {
    # Delete all breakpoints and catchpoints.
    delete_breakpoints
 
-   gdb_test "break $bp_exit" \
+   # Force $srcfile as the current GDB source can be in glibc sourcetree.
+   gdb_test "break $srcfile:$bp_exit" \
        "Breakpoint .*file .*$srcfile, line .*" \
        "unpatch child, breakpoint at exit call"
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch] testsuite fuzzy results fixup: foll-fork.exp
  2009-11-26 22:06 [patch] testsuite fuzzy results fixup: foll-fork.exp Jan Kratochvil
@ 2009-11-30 20:37 ` Tom Tromey
  2009-11-30 22:58   ` Jan Kratochvil
  2009-12-21  5:55 ` Joel Brobecker
  1 sibling, 1 reply; 4+ messages in thread
From: Tom Tromey @ 2009-11-30 20:37 UTC (permalink / raw)
  To: Jan Kratochvil; +Cc: gdb-patches

>>>>> "Jan" == Jan Kratochvil <jan.kratochvil@redhat.com> writes:

Jan> 2009-11-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
Jan> 	* gdb.base/foll-fork.exp (unpatch child, breakpoint at exit call):
Jan> 	Force $srcfile file.
Jan> 	* gdb.base/foll-fork.c (callee): Comment out the printf call.

Ok.

Tom


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch] testsuite fuzzy results fixup: foll-fork.exp
  2009-11-30 20:37 ` Tom Tromey
@ 2009-11-30 22:58   ` Jan Kratochvil
  0 siblings, 0 replies; 4+ messages in thread
From: Jan Kratochvil @ 2009-11-30 22:58 UTC (permalink / raw)
  To: Tom Tromey; +Cc: gdb-patches

On Mon, 30 Nov 2009 21:37:36 +0100, Tom Tromey wrote:
> >>>>> "Jan" == Jan Kratochvil <jan.kratochvil@redhat.com> writes:
> 
> Jan> 2009-11-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
> Jan> 	* gdb.base/foll-fork.exp (unpatch child, breakpoint at exit call):
> Jan> 	Force $srcfile file.
> Jan> 	* gdb.base/foll-fork.c (callee): Comment out the printf call.
> 
> Ok.

Checked-in:
	http://sourceware.org/ml/gdb-cvs/2009-11/msg00232.html


Thanks,
Jan


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch] testsuite fuzzy results fixup: foll-fork.exp
  2009-11-26 22:06 [patch] testsuite fuzzy results fixup: foll-fork.exp Jan Kratochvil
  2009-11-30 20:37 ` Tom Tromey
@ 2009-12-21  5:55 ` Joel Brobecker
  1 sibling, 0 replies; 4+ messages in thread
From: Joel Brobecker @ 2009-12-21  5:55 UTC (permalink / raw)
  To: Jan Kratochvil; +Cc: gdb-patches

> gdb/testsuite/
> 2009-11-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
> 
> 	* gdb.base/foll-fork.exp (unpatch child, breakpoint at exit call):
> 	Force $srcfile file.
> 	* gdb.base/foll-fork.c (callee): Comment out the printf call.

FYI: Checked in the gdb-7.0 branch.

-- 
Joel


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-12-21  5:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-26 22:06 [patch] testsuite fuzzy results fixup: foll-fork.exp Jan Kratochvil
2009-11-30 20:37 ` Tom Tromey
2009-11-30 22:58   ` Jan Kratochvil
2009-12-21  5:55 ` Joel Brobecker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox