]> git.pld-linux.org Git - packages/gdb.git/blob - gdb-6.5-missed-trap-on-step-test.patch
- update to gdb-7.0-7.fc12.src.rpm; but leave cactus patches as these seem newer
[packages/gdb.git] / gdb-6.5-missed-trap-on-step-test.patch
1 Fix has been committed to:
2         gdb-6.6-scheduler_locking-step-sw-watchpoints2.patch
3
4 --- /dev/null   2007-12-14 20:45:09.113039517 +0100
5 +++ gdb-6.5/gdb/testsuite/gdb.base/watchpoint-during-step.exp   2007-12-24 19:42:00.000000000 +0100
6 @@ -0,0 +1,51 @@
7 +# Copyright 2007 Free Software Foundation, Inc.
8 +
9 +# This program is free software; you can redistribute it and/or modify
10 +# it under the terms of the GNU General Public License as published by
11 +# the Free Software Foundation; either version 2 of the License, or
12 +# (at your option) any later version.
13 +# 
14 +# This program is distributed in the hope that it will be useful,
15 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
16 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 +# GNU General Public License for more details.
18 +# 
19 +# You should have received a copy of the GNU General Public License
20 +# along with this program; if not, write to the Free Software
21 +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
22 +
23 +if $tracelevel then {
24 +    strace $tracelevel
25 +}
26 +
27 +set prms_id 0
28 +set bug_id 0
29 +
30 +set testfile watchpoint-during-step
31 +set srcfile ${testfile}.c
32 +set binfile ${objdir}/${subdir}/${testfile}
33 +if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
34 +    untested "Couldn't compile test program"
35 +    return -1
36 +}
37 +
38 +# Get things started.
39 +
40 +gdb_exit
41 +gdb_start
42 +gdb_reinitialize_dir $srcdir/$subdir
43 +gdb_load ${binfile}
44 +
45 +runto_main
46 +
47 +gdb_breakpoint [gdb_get_line_number "var = 2"]
48 +gdb_continue_to_breakpoint "Find the first var set"
49 +
50 +gdb_test "step" ".*var = 3;" "Step to the next var set"
51 +
52 +gdb_test "watch var" "atchpoint .*: var" "Set the watchpoint"
53 +
54 +# Here is the target point.  Be careful to not have breakpoint set on the line
55 +# we step from as in this case it is a valid upstream KFAIL gdb/38
56 +
57 +gdb_test "step" ".*Old value = 2.*New value = 3.*" "Catch the watchpoint"
58 --- /dev/null   2007-12-14 20:45:09.113039517 +0100
59 +++ gdb-6.5/gdb/testsuite/gdb.base/watchpoint-during-step.c     2007-12-24 19:38:10.000000000 +0100
60 @@ -0,0 +1,30 @@
61 +/* This testcase is part of GDB, the GNU debugger.
62 +
63 +   Copyright 2007 Free Software Foundation, Inc.
64 +
65 +   This program is free software; you can redistribute it and/or modify
66 +   it under the terms of the GNU General Public License as published by
67 +   the Free Software Foundation; either version 2 of the License, or
68 +   (at your option) any later version.
69 +
70 +   This program is distributed in the hope that it will be useful,
71 +   but WITHOUT ANY WARRANTY; without even the implied warranty of
72 +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
73 +   GNU General Public License for more details.
74
75 +   You should have received a copy of the GNU General Public License
76 +   along with this program; if not, write to the Free Software
77 +   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
78 +
79 +   Please email any bugs, comments, and/or additions to this file to:
80 +   bug-gdb@prep.ai.mit.edu  */
81 +
82 +static int var;
83 +
84 +int main()
85 +{
86 +  var = 1;
87 +  var = 2;
88 +  var = 3;
89 +  return 0;
90 +}
This page took 0.053145 seconds and 3 git commands to generate.