diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-11-28 04:33:47 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-11-28 04:33:47 +0000 |
commit | 8358c15c55744630cf69baf9acd134b8cc04e7c7 (patch) | |
tree | e7a982a8c87c619e6ac8542864159b7bc5c30936 /gdb/testsuite | |
parent | 16c381f0589cead48e7e707c6584ec8629601aad (diff) | |
download | gdb-8358c15c55744630cf69baf9acd134b8cc04e7c7.zip gdb-8358c15c55744630cf69baf9acd134b8cc04e7c7.tar.gz gdb-8358c15c55744630cf69baf9acd134b8cc04e7c7.tar.bz2 |
gdb/
Fix step_resume_breakpoint unsaved during an infcall.
* gdbthread.h (struct thread_control_state): Move here field
step_resume_breakpoint ...
(struct thread_info): ... from here.
* infrun.c (save_infcall_control_state): Reset
control.step_resume_breakpoint to NULL.
(restore_infcall_control_state, discard_infcall_control_state): Delete
control.step_resume_breakpoint.
* arm-linux-tdep.c, infrun.c, thread.c: Update all the references to
the moved field.
gdb/testsuite/
Fix step_resume_breakpoint unsaved during an infcall.
* gdb.base/step-resume-infcall.exp: New file.
* gdb.base/step-resume-infcall.c: New file.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/step-resume-infcall.c | 47 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/step-resume-infcall.exp | 52 |
3 files changed, 105 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index ab3c3a7..e1cd9bb 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2010-11-28 Jan Kratochvil <jan.kratochvil@redhat.com> + + Fix step_resume_breakpoint unsaved during an infcall. + * gdb.base/step-resume-infcall.exp: New file. + * gdb.base/step-resume-infcall.c: New file. + 2010-11-24 Edjunior Machado <emachado@br.ibm.com> * gdb.asm/powerpc.inc: Use 'sys_exit' on gdbasm_exit0 macro. diff --git a/gdb/testsuite/gdb.base/step-resume-infcall.c b/gdb/testsuite/gdb.base/step-resume-infcall.c new file mode 100644 index 0000000..e5e4657 --- /dev/null +++ b/gdb/testsuite/gdb.base/step-resume-infcall.c @@ -0,0 +1,47 @@ +/* This testcase is part of GDB, the GNU debugger. + + Copyright 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. */ + +#include <stdio.h> + +volatile int cond_hit; + +int +cond (void) +{ + cond_hit++; + + return 1; +} + +int +func (void) +{ + return 0; /* in-func */ +} + +int +main (void) +{ + /* Variable is used so that there is always at least one instruction on the + same line after FUNC returns. */ + int i = func (); /* call-func */ + + /* Dummy calls. */ + cond (); + func (); + return 0; +} diff --git a/gdb/testsuite/gdb.base/step-resume-infcall.exp b/gdb/testsuite/gdb.base/step-resume-infcall.exp new file mode 100644 index 0000000..645a0d6 --- /dev/null +++ b/gdb/testsuite/gdb.base/step-resume-infcall.exp @@ -0,0 +1,52 @@ +# Copyright (C) 2010 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +set testfile "step-resume-infcall" + +if { [prepare_for_testing ${testfile}.exp ${testfile}] } { + return -1 +} + +if ![runto_main] { + return -1 +} + +gdb_test "step" " in-func .*" +gdb_test "up" " call-func .*" +gdb_test_no_output {set $b=$pc} + +if ![runto_main] { + return -1 +} + +gdb_breakpoint {*$b if cond ()} + +set test {print $bpnum} +gdb_test_multiple $test $test { + -re " = (\[0-9\]+)\r\n$gdb_prompt $" { + set caller_bp $expect_out(1,string) + pass $test + } +} + +# Debug only: +gdb_test "disass/m" ".*" +gdb_test "info breakpoints" ".*" + +gdb_test "next" "Breakpoint $caller_bp, .* call-func .*" + +# `cond-hit' is now hit twice; but it may not be in the future. It is +# currently not a bug so it is not KFAILed. +gdb_test "p cond_hit" { = [12]} |