]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.trace/while-dyn.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.trace / while-dyn.exp
CommitLineData
213516ef 1# Copyright 1998-2023 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
8bca2978
SL
26if ![gdb_trace_common_supports_arch] {
27 unsupported "no trace-common.h support for arch"
28 return -1
29}
f8b7eaf3
DJ
30if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
31 executable {debug nowarnings}] != "" } {
5b362f04 32 untested "failed to compile"
f8b7eaf3 33 return -1
c906108c 34}
f8b7eaf3 35gdb_load $binfile
f8b7eaf3 36runto_main
c906108c
SS
37gdb_reinitialize_dir $srcdir/$subdir
38
89c6d320 39if {![gdb_target_supports_trace]} {
bc6c7af4 40 unsupported "current target does not support trace"
ae59b1da 41 return 1
c906108c
SS
42}
43
c906108c
SS
44#
45# test while-stepping dynamically (live target)
46#
47
d350db38
PA
48proc test_while_stepping { while_stepping } {
49 global fpreg
50 global decimal
51 global gdb_prompt
52 global executable
53
cce0ae56
PA
54 with_test_prefix "$while_stepping" {
55 clean_restart $executable
d350db38 56
cce0ae56 57 runto_main
d350db38 58
cce0ae56 59 ## verify number of trace frames collected matches stepcount
d350db38 60
cce0ae56
PA
61 gdb_delete_tracepoints
62 gdb_test "trace gdb_c_test" \
63 "Tracepoint $decimal at .*" \
64 "Set tracepoint at gdb_c_test"
d350db38 65
cce0ae56
PA
66 gdb_trace_setactions "define $while_stepping <stepcount>" \
67 "" \
68 "collect \$$fpreg" "^$" \
69 "$while_stepping 5" "^$" \
70 "collect p" "^$" \
71 "end" "^$" \
72 "end" ""
c906108c 73
cce0ae56 74 gdb_test "tstart" ".*"
c906108c 75
cce0ae56
PA
76 gdb_breakpoint "end" qualified
77 gdb_test "continue" \
78 "Continuing.*Breakpoint $decimal, end.*" \
79 "run trace experiment"
c906108c 80
cce0ae56 81 gdb_test "tstop" ".*"
c906108c 82
cce0ae56 83 gdb_tfind_test "frame 5 should be the last one collected" "5" "5"
c906108c 84
cce0ae56
PA
85 gdb_test "tfind 6" "failed to find.*" \
86 "trace stopped after 5 stepping frames"
d350db38 87
cce0ae56
PA
88 gdb_test "tfind none" ".*"
89 }
c906108c
SS
90}
91
d350db38
PA
92# Test all while-stepping aliases.
93
94test_while_stepping "while-stepping"
95test_while_stepping "stepping"
96test_while_stepping "ws"