diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-11-30 22:56:34 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-11-30 22:56:34 +0000 |
commit | 6a53b2ec3d21f3e83901366d49bd5b4ae7a8f536 (patch) | |
tree | ab9970393d770c6e413bc91b1129f44a58d438af | |
parent | d7167b4c6aca3a0eead16ea6aafd3d1712c0866e (diff) | |
download | fsf-binutils-gdb-6a53b2ec3d21f3e83901366d49bd5b4ae7a8f536.zip fsf-binutils-gdb-6a53b2ec3d21f3e83901366d49bd5b4ae7a8f536.tar.gz fsf-binutils-gdb-6a53b2ec3d21f3e83901366d49bd5b4ae7a8f536.tar.bz2 |
gdb/testsuite/
* gdb.base/bigcore.exp (extract_heap): Set $lim limit to 200.
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/bigcore.exp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 01cd4f7..1669aa9 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2009-11-30 Jan Kratochvil <jan.kratochvil@redhat.com> + * gdb.base/bigcore.exp (extract_heap): Set $lim limit to 200. + +2009-11-30 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. diff --git a/gdb/testsuite/gdb.base/bigcore.exp b/gdb/testsuite/gdb.base/bigcore.exp index acbfdd6..48ceea1 100644 --- a/gdb/testsuite/gdb.base/bigcore.exp +++ b/gdb/testsuite/gdb.base/bigcore.exp @@ -96,7 +96,7 @@ proc extract_heap { dir } { } -re " = \\(struct list \\*\\) (0x\[0-9a-f\]*).*$gdb_prompt $" { set heap [concat $heap $expect_out(1,string)] - if { $lim >= 50 } { + if { $lim >= 200 } { pass "$test (stop at $lim)" } else { incr lim |