]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.trace/while-dyn.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.trace / while-dyn.exp
CommitLineData
8acc9f48 1# Copyright 1998-2013 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
c906108c
SS
20
21gdb_exit
22gdb_start
23
497a5eb0
TT
24standard_testfile actions.c
25set executable $testfile
f8b7eaf3
DJ
26if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
27 executable {debug nowarnings}] != "" } {
28 untested while-dyn.exp
29 return -1
c906108c 30}
f8b7eaf3 31gdb_load $binfile
de7ff789
MS
32gdb_test "tstop" ".*" ""
33gdb_test "tfind none" ".*" ""
f8b7eaf3 34runto_main
c906108c
SS
35gdb_reinitialize_dir $srcdir/$subdir
36
c906108c 37if { ![gdb_target_supports_trace] } then {
10010058 38 unsupported "Current target does not support trace"
c906108c 39 return 1;
c906108c
SS
40}
41
c906108c
SS
42#
43# test while-stepping dynamically (live target)
44#
45
7f062217 46if [is_amd64_regs_target] {
6a8f2671 47 set fpreg "\$rbp"
7f062217 48} elseif [is_x86_like_target] {
6a8f2671
PA
49 set fpreg "\$ebp"
50} else {
51 set fpreg "\$fp"
52}
53
d350db38
PA
54proc test_while_stepping { while_stepping } {
55 global fpreg
56 global decimal
57 global gdb_prompt
58 global executable
59
60 clean_restart $executable
61
de7ff789
MS
62 gdb_test "tstop" ".*" ""
63 gdb_test "tfind none" ".*" ""
d350db38
PA
64 runto_main
65
66 ## verify number of trace frames collected matches stepcount
67
68 gdb_delete_tracepoints
69 gdb_test "trace gdb_c_test" \
70 "Tracepoint $decimal at .*" \
71 "$while_stepping: Set tracepoint at gdb_c_test"
72
73 gdb_trace_setactions "5.12: define $while_stepping <stepcount>" \
c906108c 74 "" \
6a8f2671 75 "collect $fpreg" "^$" \
d350db38 76 "$while_stepping 5" "^$" \
c906108c
SS
77 "collect p" "^$" \
78 "end" "^$" \
79 "end" ""
80
de7ff789 81 gdb_test "tstart" ".*" ""
c906108c 82
de7ff789 83 gdb_test "break end" ".*" ""
d350db38
PA
84 gdb_test "continue" \
85 "Continuing.*Breakpoint $decimal, end.*" \
86 "$while_stepping: run trace experiment"
c906108c 87
de7ff789 88 gdb_test "tstop" ".*" ""
c906108c 89
d350db38 90 gdb_tfind_test "$while_stepping: frame 5 should be the last one collected" "5" "5"
c906108c 91
d350db38
PA
92 set test "$while_stepping: trace stopped after 5 stepping frames"
93 gdb_test_multiple "tfind 6" "$test" {
94 -re "failed to find.*$gdb_prompt $" {
95 pass "$test"
96 }
97 -re ".*$gdb_prompt $" {
98 fail "$test"
99 }
c906108c 100 }
d350db38 101
de7ff789 102 gdb_test "tfind none" ".*" ""
c906108c
SS
103}
104
d350db38
PA
105# Test all while-stepping aliases.
106
107test_while_stepping "while-stepping"
108test_while_stepping "stepping"
109test_while_stepping "ws"