keiths / rpms / gdb

Forked from rpms/gdb 4 months ago
Clone
a8767b3
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
f524ac5
From: Fedora GDB patches <invalid@email.com>
f524ac5
Date: Fri, 27 Oct 2017 21:07:50 +0200
f524ac5
Subject: gdb-6.5-missed-trap-on-step-test.patch
f524ac5
f637971
;; Test hiding unexpected breakpoints on intentional step commands.
f637971
;;=fedoratest
f524ac5
ed268f2
Fix has been committed to:
ed268f2
	gdb-6.6-scheduler_locking-step-sw-watchpoints2.patch
ed268f2
f637971
diff --git a/gdb/testsuite/gdb.base/watchpoint-during-step.c b/gdb/testsuite/gdb.base/watchpoint-during-step.c
f637971
new file mode 100644
f637971
--- /dev/null
f637971
+++ b/gdb/testsuite/gdb.base/watchpoint-during-step.c
f637971
@@ -0,0 +1,30 @@
f637971
+/* This testcase is part of GDB, the GNU debugger.
f637971
+
f637971
+   Copyright 2007 Free Software Foundation, Inc.
f637971
+
f637971
+   This program is free software; you can redistribute it and/or modify
f637971
+   it under the terms of the GNU General Public License as published by
f637971
+   the Free Software Foundation; either version 2 of the License, or
f637971
+   (at your option) any later version.
f637971
+
f637971
+   This program is distributed in the hope that it will be useful,
f637971
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
f637971
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f637971
+   GNU General Public License for more details.
f637971
+ 
f637971
+   You should have received a copy of the GNU General Public License
f637971
+   along with this program; if not, write to the Free Software
f637971
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
f637971
+
f637971
+   Please email any bugs, comments, and/or additions to this file to:
f637971
+   bug-gdb@prep.ai.mit.edu  */
f637971
+
f637971
+static int var;
f637971
+
f637971
+int main()
f637971
+{
f637971
+  var = 1;
f637971
+  var = 2;
f637971
+  var = 3;
f637971
+  return 0;
f637971
+}
f637971
diff --git a/gdb/testsuite/gdb.base/watchpoint-during-step.exp b/gdb/testsuite/gdb.base/watchpoint-during-step.exp
f637971
new file mode 100644
f637971
--- /dev/null
f637971
+++ b/gdb/testsuite/gdb.base/watchpoint-during-step.exp
dd46ae6
@@ -0,0 +1,44 @@
ed268f2
+# Copyright 2007 Free Software Foundation, Inc.
ed268f2
+
ed268f2
+# This program is free software; you can redistribute it and/or modify
ed268f2
+# it under the terms of the GNU General Public License as published by
ed268f2
+# the Free Software Foundation; either version 2 of the License, or
ed268f2
+# (at your option) any later version.
ed268f2
+# 
ed268f2
+# This program is distributed in the hope that it will be useful,
ed268f2
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
ed268f2
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
ed268f2
+# GNU General Public License for more details.
ed268f2
+# 
ed268f2
+# You should have received a copy of the GNU General Public License
ed268f2
+# along with this program; if not, write to the Free Software
ed268f2
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
ed268f2
+
ed268f2
+set testfile watchpoint-during-step
ed268f2
+set srcfile ${testfile}.c
Jan Kratochvil 22d1e60
+set binfile [standard_output_file ${testfile}]
ed268f2
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
ed268f2
+    untested "Couldn't compile test program"
ed268f2
+    return -1
ed268f2
+}
ed268f2
+
ed268f2
+# Get things started.
ed268f2
+
ed268f2
+gdb_exit
ed268f2
+gdb_start
ed268f2
+gdb_reinitialize_dir $srcdir/$subdir
ed268f2
+gdb_load ${binfile}
ed268f2
+
ed268f2
+runto_main
ed268f2
+
ed268f2
+gdb_breakpoint [gdb_get_line_number "var = 2"]
ed268f2
+gdb_continue_to_breakpoint "Find the first var set"
ed268f2
+
ed268f2
+gdb_test "step" ".*var = 3;" "Step to the next var set"
ed268f2
+
ed268f2
+gdb_test "watch var" "atchpoint .*: var" "Set the watchpoint"
ed268f2
+
ed268f2
+# Here is the target point.  Be careful to not have breakpoint set on the line
ed268f2
+# we step from as in this case it is a valid upstream KFAIL gdb/38
ed268f2
+
ed268f2
+gdb_test "step" ".*Old value = 2.*New value = 3.*" "Catch the watchpoint"