Blame SOURCES/gdb-6.5-missed-trap-on-step-test.patch

f9426a
Fix has been committed to:
f9426a
	gdb-6.6-scheduler_locking-step-sw-watchpoints2.patch
f9426a
f9426a
--- /dev/null	2007-12-14 20:45:09.113039517 +0100
f9426a
+++ gdb-6.5/gdb/testsuite/gdb.base/watchpoint-during-step.exp	2007-12-24 19:42:00.000000000 +0100
f9426a
@@ -0,0 +1,44 @@
f9426a
+# Copyright 2007 Free Software Foundation, Inc.
f9426a
+
f9426a
+# This program is free software; you can redistribute it and/or modify
f9426a
+# it under the terms of the GNU General Public License as published by
f9426a
+# the Free Software Foundation; either version 2 of the License, or
f9426a
+# (at your option) any later version.
f9426a
+# 
f9426a
+# This program is distributed in the hope that it will be useful,
f9426a
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
f9426a
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f9426a
+# GNU General Public License for more details.
f9426a
+# 
f9426a
+# You should have received a copy of the GNU General Public License
f9426a
+# along with this program; if not, write to the Free Software
f9426a
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
f9426a
+
f9426a
+set testfile watchpoint-during-step
f9426a
+set srcfile ${testfile}.c
f9426a
+set binfile ${objdir}/${subdir}/${testfile}
f9426a
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
f9426a
+    untested "Couldn't compile test program"
f9426a
+    return -1
f9426a
+}
f9426a
+
f9426a
+# Get things started.
f9426a
+
f9426a
+gdb_exit
f9426a
+gdb_start
f9426a
+gdb_reinitialize_dir $srcdir/$subdir
f9426a
+gdb_load ${binfile}
f9426a
+
f9426a
+runto_main
f9426a
+
f9426a
+gdb_breakpoint [gdb_get_line_number "var = 2"]
f9426a
+gdb_continue_to_breakpoint "Find the first var set"
f9426a
+
f9426a
+gdb_test "step" ".*var = 3;" "Step to the next var set"
f9426a
+
f9426a
+gdb_test "watch var" "atchpoint .*: var" "Set the watchpoint"
f9426a
+
f9426a
+# Here is the target point.  Be careful to not have breakpoint set on the line
f9426a
+# we step from as in this case it is a valid upstream KFAIL gdb/38
f9426a
+
f9426a
+gdb_test "step" ".*Old value = 2.*New value = 3.*" "Catch the watchpoint"
f9426a
--- /dev/null	2007-12-14 20:45:09.113039517 +0100
f9426a
+++ gdb-6.5/gdb/testsuite/gdb.base/watchpoint-during-step.c	2007-12-24 19:38:10.000000000 +0100
f9426a
@@ -0,0 +1,30 @@
f9426a
+/* This testcase is part of GDB, the GNU debugger.
f9426a
+
f9426a
+   Copyright 2007 Free Software Foundation, Inc.
f9426a
+
f9426a
+   This program is free software; you can redistribute it and/or modify
f9426a
+   it under the terms of the GNU General Public License as published by
f9426a
+   the Free Software Foundation; either version 2 of the License, or
f9426a
+   (at your option) any later version.
f9426a
+
f9426a
+   This program is distributed in the hope that it will be useful,
f9426a
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
f9426a
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f9426a
+   GNU General Public License for more details.
f9426a
+ 
f9426a
+   You should have received a copy of the GNU General Public License
f9426a
+   along with this program; if not, write to the Free Software
f9426a
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
f9426a
+
f9426a
+   Please email any bugs, comments, and/or additions to this file to:
f9426a
+   bug-gdb@prep.ai.mit.edu  */
f9426a
+
f9426a
+static int var;
f9426a
+
f9426a
+int main()
f9426a
+{
f9426a
+  var = 1;
f9426a
+  var = 2;
f9426a
+  var = 3;
f9426a
+  return 0;
f9426a
+}