1 # Copyright 1998-2021 Free Software Foundation, Inc.
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.
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.
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/>.
16 # This file was written by Michael Snyder (msnyder@cygnus.com)
18 load_lib "trace-support.exp"
24 standard_testfile actions.c
25 if ![gdb_trace_common_supports_arch] {
26 unsupported "no trace-common.h support for arch"
29 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" $binfile \
30 executable {debug nowarnings}] != "" } {
31 untested "failed to compile"
34 gdb_reinitialize_dir $srcdir/$subdir
36 # If testing on a remote host, download the source file.
37 # remote_download host $srcdir/$subdir/$srcfile
42 # test while-stepping command
45 gdb_delete_tracepoints
46 set trcpt1 [gdb_gettpnum gdb_c_test]
47 if { $trcpt1 <= 0 } then {
48 fail "could not find gdb_c_test function"
52 # 5.12 basic while-stepping command (collect regs)
54 gdb_test "info tracepoints" \
55 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
56 \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
57 \[\t \]+not installed on target." \
58 "5.12: set a tracepoint, stepcount is zero"
62 gdb_trace_setactions "5.12: set stepcount to $stepcount" \
64 "while-stepping $stepcount" "" \
65 "collect \$regs" "^$" \
68 gdb_test "info tracepoints" \
69 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
70 \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
71 \[\t \]+while-stepping 12.*" \
72 "5.12: info trace shows \"while-stepping\""
74 # 5.13 step out of context while collecting local variable
75 # [deferred to dynamic test section]
77 proc while_stepping_bogus_arg { bogus msgstring } {
80 gdb_trace_setactions "$msgstring" \
82 "while-stepping $bogus" ".*while-stepping step count"
85 # 5.14 while-stepping (no argument)
87 while_stepping_bogus_arg "" "5.14: while-stepping null stepcount"
89 # 5.15 while-stepping (zero stepcount)
91 while_stepping_bogus_arg "0" "5.15: while-stepping rejects zero stepcount"
93 # 5.16 while-stepping without collecting anything
94 gdb_trace_setactions "5.16: step without collecting anything" \
96 "while-stepping $stepcount" "^$" \
99 gdb_test "info tracepoints" \
100 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
101 \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
102 .*while-stepping $stepcount.*
104 "5.16: confirm actions, step without collecting anything"
106 # Can't use runto_main here, because that would delete the tracepoints
109 # Load the binary to the target too.
112 gdb_breakpoint "main"
114 if {[gdb_test "" "Breakpoint .*"] != 0} {
115 fail "can't run to main"
119 if ![gdb_target_supports_trace] {
120 unsupported "target does not support trace"
124 gdb_trace_setactions "set stepcount to $stepcount" \
126 "while-stepping $stepcount" "" \
127 "collect \$regs " "^$" \
128 "collect \$locals " "^$" \
131 proc check_tracepoint { data_source } {
132 with_test_prefix "$data_source" {
136 gdb_test "info tracepoints" \
137 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
138 \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
139 \[\t \]+while-stepping $stepcount.*
140 \[\t \]+collect \\\$regs.*
141 \[\t \]+collect \\\$locals.*
146 gdb_test_no_output "tstart"
147 check_tracepoint "live"
148 gdb_test_no_output "tstop"
149 set tracefile [standard_output_file ${testfile}]
150 gdb_test "tsave ${tracefile}.tf" \
151 "Trace data saved to file '${tracefile}.tf'\.\\r" \
152 "save tfile trace file"
153 gdb_test "tsave -ctf ${tracefile}.ctf" \
154 "Trace data saved to directory '${tracefile}.ctf'\.\\r" \
155 "save ctf trace file"
157 # Restart GDB and read the trace data in tfile target.
160 gdb_reinitialize_dir $srcdir/$subdir
161 gdb_file_cmd $binfile
162 gdb_test "target tfile ${tracefile}.tf" ".*" \
163 "change to tfile target"
164 check_tracepoint "tfile"
166 # Try to read ctf data if GDB supports.
167 set gdb_can_read_ctf_data 0
168 gdb_test_multiple "target ctf" "" {
169 -re "Undefined target command: \"ctf\"\. Try \"help target\"\.\r\n$gdb_prompt $" {
170 set gdb_can_read_ctf_data 0
172 -re "No CTF directory specified.*\r\n$gdb_prompt $" {
173 set gdb_can_read_ctf_data 1
177 if { $gdb_can_read_ctf_data } {
180 gdb_reinitialize_dir $srcdir/$subdir
181 gdb_file_cmd $binfile
182 gdb_test "target ctf ${tracefile}.ctf" ".*" \
183 "change to ctf target"
184 check_tracepoint "ctf"