gdb/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.reverse / consecutive-precsave.exp
CommitLineData
4c38e0a4 1# Copyright 2008, 2009, 2010 Free Software Foundation, Inc.
02506ff1
MS
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16# This file is part of the GDB testsuite. It tests stepping over
17# consecutive instructions in a process record logfile.
18
19# This test suitable only for process record-replay
20if ![target_info exists gdb,use_precord] {
21 return
22}
23
24set testfile "consecutive-reverse"
25set srcfile ${testfile}.c
26
27if { [prepare_for_testing $testfile.exp $testfile $srcfile] } {
28 return -1
29}
30
31runto main
32
33if [target_info exists gdb,use_precord] {
34 # Activate process record/replay
35 gdb_test "record" "" "Turn on process record"
36 # FIXME: command ought to acknowledge, so we can test if it succeeded.
37}
38
39set end_location [gdb_get_line_number "end of main" ]
40gdb_test "break $end_location" \
41 "Breakpoint $decimal at .*/$srcfile, line $end_location\." \
42 "BP at end of main"
43
44gdb_test "continue" "Breakpoint .* end of main .*" "run to end of main"
45
46gdb_test "record save consecutive.precsave" \
47 "Saved core file consecutive.precsave with execution log\." \
48 "save process recfile"
49
50gdb_test "kill" "" "Kill process, prepare to debug log file" \
51 "Kill the program being debugged\\? \\(y or n\\) " "y"
52
53gdb_test "record restore consecutive.precsave" \
54 "Program terminated with signal .*" \
55 "reload precord save file"
56
57gdb_breakpoint foo
58gdb_test "continue" "Breakpoint $decimal, foo .*" \
59 "continue to breakpoint in foo"
60
61set foo1_addr 0
62set foo2_addr 0
63set stop_addr 0
64
ec9f1212 65gdb_test_multiple "x /2i \$pc" "get breakpoint address for foo" {
02506ff1
MS
66 global hex
67 global foo1_addr
68 global foo2_addr
69 global gdb_prompt
70
240e538a 71 -re "=> ($hex).*\[\r\n\]+ ($hex).*$gdb_prompt $" {
02506ff1
MS
72 set foo1_addr $expect_out(1,string)
73 set foo2_addr $expect_out(2,string)
74 pass "get breakpoint address for foo"
75 }
02506ff1
MS
76}
77
78gdb_test "break \*$foo2_addr" "Breakpoint $decimal at $foo2_addr: file .*" \
79 "set bp, 2nd instr"
80
81set testmsg "stopped at bp, 2nd instr"
82gdb_test_multiple "step" $testmsg {
83 -re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" {
84 set stop_addr $expect_out(1,string)
85 if [eval expr "$foo2_addr == $stop_addr"] then {
86 pass "stopped at bp, 2nd instr"
87 } else {
88 fail "stopped at bp, 2nd instr (wrong address)"
89 }
90 }
91}
92
93###
94###
95###
96
97# Set reverse execution direction
98# FIXME: command needs to acknowledge, so we can test if it succeeded.
99
100gdb_test "set exec-dir reverse" "" "set reverse execution"
101
102# Now step backward and hope to hit the first breakpoint.
103
104set test_msg "stopped at bp in reverse, 1st instr"
105gdb_test_multiple "step" "$test_msg" {
106 -re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" {
107 set stop_addr $expect_out(1,string)
108 if [eval expr "$foo1_addr == $stop_addr"] then {
109 pass "$test_msg"
110 } else {
111 fail "$test_msg (wrong address)"
112 }
113 }
114 -re "Breakpoint $decimal, foo.*$gdb_prompt $" {
ec9f1212
MS
115 gdb_test "print \$pc == $foo1_addr" \
116 "$decimal = 1" \
117 "$test_msg"
02506ff1
MS
118 }
119}
This page took 0.103222 seconds and 4 git commands to generate.