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

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