* gdb.trace/backtrace.exp: Adjust for x86 and x86_64.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / while-dyn.exp
CommitLineData
4c38e0a4 1# Copyright 1998, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
c906108c
SS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 15
c906108c
SS
16# This file was written by Michael Snyder (msnyder@cygnus.com)
17
18load_lib "trace-support.exp"
19
20if $tracelevel then {
21 strace $tracelevel
22}
23
24set prms_id 0
25set bug_id 0
26
27gdb_exit
28gdb_start
29
f8b7eaf3
DJ
30set testfile "actions"
31set srcfile $testfile.c
32set binfile $objdir/$subdir/while-dyn
33if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
34 executable {debug nowarnings}] != "" } {
35 untested while-dyn.exp
36 return -1
c906108c 37}
f8b7eaf3
DJ
38gdb_load $binfile
39gdb_test "tstop" "" ""
40gdb_test "tfind none" "" ""
41runto_main
c906108c
SS
42gdb_reinitialize_dir $srcdir/$subdir
43
44# We generously give ourselves one "pass" if we successfully
45# detect that this test cannot be run on this target!
46if { ![gdb_target_supports_trace] } then {
0ef2251b 47 pass "Current target does not support trace"
c906108c
SS
48 return 1;
49
50}
51
52# If testing on a remote host, download the source file.
53# remote_download host $srcdir/$subdir/$srcfile
54
55#
56# test while-stepping dynamically (live target)
57#
58
59## verify number of trace frames collected matches stepcount
60
61gdb_delete_tracepoints
62gdb_test "trace gdb_c_test" \
63 "Tracepoint $decimal at .*" \
64 "Set tracepoint at gdb_c_test"
65
6a8f2671
PA
66if [istarget "x86_64-*"] then {
67 set fpreg "\$rbp"
68} elseif [istarget "i?86-*"] then {
69 set fpreg "\$ebp"
70} else {
71 set fpreg "\$fp"
72}
73
c906108c
SS
74gdb_trace_setactions "5.12: define while-stepping <stepcount>" \
75 "" \
6a8f2671 76 "collect $fpreg" "^$" \
c906108c
SS
77 "while-stepping 5" "^$" \
78 "collect p" "^$" \
79 "end" "^$" \
80 "end" ""
81
82gdb_test "tstart" "" ""
83
f8b7eaf3
DJ
84gdb_test "break end" "" ""
85gdb_test "continue" \
86 "Continuing.*Breakpoint $decimal, end.*" \
87 "run trace experiment"
c906108c
SS
88
89gdb_test "tstop" "" ""
90
91gdb_tfind_test "5.12: frame 5 should be the last one collected" "5" "5"
92
93send_gdb "tfind 6\n"
94gdb_expect {
95 -re "failed to find.*$gdb_prompt $" {
96 pass "5.12: trace stopped after 5 stepping frames"
97 }
98 -re ".*$gdb_prompt $" {
99 fail "5.12: trace stopped after 5 stepping frames"
100 }
101}
102
103gdb_test "tfind none" "" ""
This page took 0.907358 seconds and 4 git commands to generate.