diff options
author | Jim Ingham <jingham@apple.com> | 2004-05-05 21:18:11 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2004-05-05 21:18:11 +0000 |
commit | 0a5e7efe29d89c9957e560fd608e0aa7528a3f4c (patch) | |
tree | 998c890df8408e11ff420c5d4bdea9d37e707521 /gdb/testsuite | |
parent | 33216455a7084992c03481fee8a8320f98677ae1 (diff) | |
download | gdb-0a5e7efe29d89c9957e560fd608e0aa7528a3f4c.zip gdb-0a5e7efe29d89c9957e560fd608e0aa7528a3f4c.tar.gz gdb-0a5e7efe29d89c9957e560fd608e0aa7528a3f4c.tar.bz2 |
Preserve the ignore count when we resolve a pending breakpoint. Also add
a test for this to pending.exp.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/pending.exp | 39 |
2 files changed, 44 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 40a0cf2..6def1a4 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2004-05-05 Jim Ingham <jingham@apple.com> + + * gdb.base/pending.exp: Make sure pending breakpoints + preserve the ignore count. + 2004-04-27 Jerome Guitton <guitton@gnat.com> * i386-prologue.exp: Add testcase for jump instruction as first diff --git a/gdb/testsuite/gdb.base/pending.exp b/gdb/testsuite/gdb.base/pending.exp index 315e544..9bc0802 100644 --- a/gdb/testsuite/gdb.base/pending.exp +++ b/gdb/testsuite/gdb.base/pending.exp @@ -207,6 +207,31 @@ gdb_test "info break" \ \[0-9\]+\[\t \]+breakpoint keep y.*PENDING.*pendshr.c:26 if x > 3.*" \ "multiple pending breakpoints" + +# +# Try a pending break for a line in a source file with ignore count: +# + +gdb_test_multiple "break pendshr.c:27" "Set pending breakpoint 3" { + -re ".*Make breakpoint pending.*y or \\\[n\\\]. $" { + gdb_test "y" "Breakpoint.*pendshr.c:27.*pending." \ + "Set pending breakpoint 3" + } +} + +gdb_test {ignore $bpnum 2} "Will ignore next 2 crossings of breakpoint .*" \ + "set ignore count on pending breakpoint 3" + +gdb_test "info break" \ + "Num Type\[ \]+Disp Enb Address\[ \]+What.* +\[0-9\]+\[\t \]+breakpoint keep n.*PENDING.*pendfunc1.* +\[\t \]+stop only if k == 1.* +\[\t \]+print k.* +\[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$mainline.* +\[0-9\]+\[\t \]+breakpoint keep y.*PENDING.*pendshr.c:26 if x > 3.* +\[0-9\]+\[\t \]+breakpoint keep y.*PENDING.*pendshr.c:27.*ignore next 2 hits.*" \ +"multiple pending breakpoints 2" + # # Run to main which should resolve a pending breakpoint # @@ -239,6 +264,19 @@ gdb_test "continue" \ \[$\]1 = 1." \ "continue to resolved breakpoint 1" +# +# Disable the other two breakpoints, and continue to the one with +# the ignore count. Make sure you hit it the third time, x should +# be 3 then. +# + +gdb_test "disable 7" "" "Disable other breakpoints" +gdb_test "disable 5" "" "Disable other breakpoints" + +gdb_test "continue" \ + {.*Breakpoint.*pendfunc1.*\(x=3\) at.*pendshr.c:27.*printf.*;} \ +"continue to resolved breakpoint 3" + delete_breakpoints gdb_breakpoint "main" @@ -259,6 +297,7 @@ gdb_test_multiple "break imaginary" "set imaginary pending breakpoint" { # rerun_to_main + gdb_test "info break" \ "Num Type\[ \]+Disp Enb Address\[ \]+What.* \[0-9\]+\[\t \]+breakpoint keep y.* in main at .*$srcfile:$mainline.* |