1 # Copyright 2012-2024 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 load_lib trace-support.exp
17 load_lib mi-support.exp
19 standard_testfile actions.c
21 require gdb_trace_common_supports_arch
23 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
24 executable {debug nowarnings}] != "" } {
25 untested "failed to compile"
29 # Test notifications on creating, deleting and modifying TSV.
31 proc test_create_delete_modify_tsv { } {
32 with_test_prefix "create delete modify" {
42 mi_gdb_load ${binfile}
44 mi_gdb_test "tvariable \$tvar1" \
45 ".*=tsv-created,name=\"tvar1\",initial=\"0\".*\\^done" \
47 mi_gdb_test "tvariable \$tvar1 = 1" \
48 ".*=tsv-modified,name=\"tvar1\",initial=\"1\".*\\^done" \
49 "tvariable \$tvar1 modified"
50 # No "=tsv-modified" notification is emitted, because the initial
51 # value is not changed.
52 mi_gdb_test "tvariable \$tvar1 = 1" \
53 ".*\\\$tvar1 = 1\\\\n\"\r\n~\"Trace state .*.*\\^done" \
54 "tvariable \$tvar1 modified without notification"
55 mi_gdb_test "tvariable \$tvar2 = 45" \
56 ".*=tsv-created,name=\"tvar2\",initial=\"45\".*\\^done" \
59 mi_gdb_test "delete tvariable \$tvar2" \
60 ".*=tsv-deleted,name=\"tvar2\".*\\^done" \
61 "delete tvariable \$tvar2"
63 mi_gdb_test "delete tvariable" \
64 ".*=tsv-deleted.*\\^done" \
65 "delete all tvariables"
67 # Test target supports tracepoints or not.
68 clean_restart $testfile
74 if ![gdb_target_supports_trace] {
75 unsupported "current target does not support trace"
80 if {[mi_clean_restart $binfile]} {
84 mi_gdb_test "tvariable \$tvar3 = 3" \
85 ".*=tsv-created,name=\"tvar3\",initial=\"3\".*\\^done" \
86 "tvariable \$tvar3 modified to 3"
87 mi_gdb_test "-break-insert -a gdb_c_test" \
89 "insert tracepoint on gdb_c_test"
90 # Define an action that increases $tvar3
96 send_gdb "collect \$tvar3 += 3\nend\n"
97 set test "define actions"
99 -re ".*${mi_gdb_prompt}$" {
103 fail "$test (timeout)"
107 mi_gdb_test "-break-insert begin" \
109 "insert tracepoint on begin"
110 mi_gdb_test "-break-insert end" \
112 "insert tracepoint on end"
115 mi_expect_stop "breakpoint-hit" "begin" ""\
116 ".*" ".*" {"" "disp=\"keep\""} \
117 "continue to begin breakpoint"
118 mi_gdb_test "-trace-start" {.*\^done} "trace start"
119 mi_send_resuming_command "exec-continue" "continuing to end"
120 mi_gdb_test "-trace-stop" {.*} "trace stop"
121 # Force GDB to get the current value of trace state variable.
122 mi_gdb_test "-trace-list-variables" ".*" "list trace variables"
123 mi_gdb_test "tvariable \$tvar3 = 2" \
124 ".*=tsv-modified,name=\"tvar3\",initial=\"2\",current=\"6\".*\\^done" \
125 "tvariable \$tvar3 modified to 2"
131 # Test when GDB connects to a disconnected stub, existing TSVs in
132 # remote stub can be uploaded to GDB, and GDB emits MI notification
133 # for new uploaded TSVs.
135 proc test_upload_tsv { } {
136 with_test_prefix "upload" {
138 global gdbserver_reconnect_p
143 set gdbserver_reconnect_p 1
144 if { [info proc gdb_reconnect] == "" } {
148 clean_restart $testfile
153 gdb_test "tvariable \$tvar1" \
154 "Trace state variable \\\$tvar1 created, with initial value 0." \
155 "create a trace state variable"
157 gdb_test "tvariable \$tvar2 = 45" \
158 "Trace state variable \\\$tvar2 created, with initial value 45." \
159 "Create a trace state variable with initial value"
160 # Define a tracepoint otherwise tracing cannot be started.
161 gdb_test "trace main" "Tracepoint $decimal at .*"
162 gdb_test_no_output "tstart" "start trace experiment"
164 set test "disconnect"
165 gdb_test_multiple "disconnect" $test {
166 -re "Trace is running but will stop on detach; detach anyway\\? \\(y or n\\) $" {
169 set test "disconnected"
170 gdb_test_multiple "y" $test {
171 -re "$gdb_prompt $" {
179 if {[mi_clean_restart $binfile]} {
183 global gdbserver_protocol
184 global gdbserver_gdbport
186 send_gdb "47-target-select $gdbserver_protocol $gdbserver_gdbport\n"
192 -re "=tsv-created,name=\"tvar1\",initial=\"0\"" {
196 -re "=tsv-created,name=\"tvar2\",initial=\"45\"" {
200 -re ".*${mi_gdb_prompt}" {
216 set gdbserver_reconnect_p 0
220 test_create_delete_modify_tsv
222 # Test target supports tracepoints or not.
224 clean_restart $testfile
230 if ![gdb_target_supports_trace] {
231 unsupported "current target does not support trace"