]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.trace/mi-trace-unavailable.exp
GDB copyright headers update after running GDB's copyright.py script.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.trace / mi-trace-unavailable.exp
CommitLineData
618f726f 1# Copyright 2013-2016 Free Software Foundation, Inc.
8cb5cc78
YQ
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
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
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.
12#
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/>.
15
16load_lib trace-support.exp
17
18standard_testfile trace-unavailable.c
19
20if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug}] } {
21 return -1
22}
23
24if ![runto_main] {
25 fail "Can't run to main to check for trace support"
26 return -1
27}
28
29if ![gdb_target_supports_trace] {
30 unsupported "Current target does not support trace"
31 return -1
32}
33
34gdb_exit
35
36load_lib mi-support.exp
37set MIFLAGS "-i=mi"
38
39if [mi_gdb_start] {
40 return
41}
42mi_run_to_main
43
44mi_gdb_test "-break-insert marker" \
45 "\\^done,bkpt=\{number=\"${decimal}\",type=\"breakpoint\".*\"\}" \
46 "insert tracepoint on marker"
47mi_gdb_test "-break-insert -a bar" \
48 "\\^done,bkpt=\{number=\"${decimal}\",type=\"tracepoint\".*\"\}" \
49 "insert tracepoint on bar"
50
51# Define an action.
52mi_gdb_test "-break-commands 3 \"collect array\" \"collect j\" \"end\" " \
53 {\^done} "set action"
54
c898adb7
YQ
55mi_gdb_test "-break-insert -a foo" \
56 "\\^done,bkpt=\{number=\"${decimal}\",type=\"tracepoint\".*\"\}" \
57 "insert tracepoint on foo"
58
59# Collect 'main' to make sure no registers are collected except PC.
60mi_gdb_test "-break-commands 4 \"collect main\" \"end\" " \
61 {\^done} "set action on tracepoint 4"
62
8cb5cc78
YQ
63mi_gdb_test "-trace-start" {.*\^done} "trace start"
64mi_send_resuming_command "exec-continue" "continuing to marker"
65mi_expect_stop \
66 "breakpoint-hit" "marker" ".*" ".*" ".*" {"" "disp=\"keep\""} \
67 "stop at marker"
68mi_gdb_test "-trace-stop" {.*} "trace stop"
69
70# Save trace frames to tfile.
71set tracefile [standard_output_file ${testfile}]
72mi_gdb_test "-trace-save ${tracefile}.tf" ".*\\^done" \
73 "save tfile trace file"
74# Save trace frames to ctf.
75mi_gdb_test "-trace-save -ctf ${tracefile}.ctf" ".*\\^done" \
76 "save ctf trace file"
77
8cb5cc78
YQ
78proc test_trace_unavailable { data_source } {
79 global decimal
80
81 with_test_prefix "$data_source" {
82
83 # Test MI commands '-stack-list-locals', '-stack-list-arguments',
84 # and '-stack-list-variables'.
85 mi_gdb_test "-trace-find frame-number 0" \
86 ".*\\^done,found=\"1\",tracepoint=\"${decimal}\",traceframe=\"0\",frame=\{.*" \
87 "-trace-find frame-number 0"
88
82a0a75f
YQ
89 # The "print entry-values" option shouldn't affect the output of
90 # '-stack-list-locals'.
91 foreach entry_values { no only preferred if-needed both compact default } {
92 mi_gdb_test "-gdb-set print entry-values $entry_values" {\^done} ""
93
94 with_test_prefix "$entry_values" {
95 # Test MI command '-stack-list-locals'.
96 mi_gdb_test "-stack-list-locals --simple-values" \
97 ".*\\^done,locals=\\\[\{name=\"array\",type=\"unsigned char \\\[2\\\]\"\},\{name=\"i\",type=\"int\",value=\"<unavailable>\"\}\\\]" \
98 "-stack-list-locals --simple-values"
99 }
100 }
101
102 mi_gdb_test "-gdb-set print entry-values no" {\^done} \
103 "-gdb-set print entry-values no"
104
8cb5cc78
YQ
105 # Test MI command '-stack-list-locals'.
106 mi_gdb_test "-stack-list-locals --simple-values" \
107 ".*\\^done,locals=\\\[\{name=\"array\",type=\"unsigned char \\\[2\\\]\"\},\{name=\"i\",type=\"int\",value=\"<unavailable>\"\}\\\]" \
108 "-stack-list-locals --simple-values"
6211c335
YQ
109 mi_gdb_test "-stack-list-locals --skip-unavailable --simple-values" \
110 ".*\\^done,locals=\\\[\{name=\"array\",type=\"unsigned char \\\[2\\\]\"\}\\\]" \
111 "-stack-list-locals --skip-unavailable --simple-values"
8cb5cc78
YQ
112
113 # Test MI command '-stack-list-arguments'.
114 mi_gdb_test "-stack-list-arguments --simple-values" \
115 ".*\\^done,stack-args=\\\[frame=\{level=\"0\",args=\\\[\{name=\"j\",type=\"int\",value=\"4\"\},\{name=\"s\",type=\"char \\\*\",value=\"<unavailable>\"\}\\\]\},.*\}.*" \
116 "-stack-list-arguments --simple-values"
6211c335
YQ
117 mi_gdb_test "-stack-list-arguments --skip-unavailable --simple-values" \
118 ".*\\^done,stack-args=\\\[frame=\{level=\"0\",args=\\\[\{name=\"j\",type=\"int\",value=\"4\"\}\\\]\},.*\}.*" \
119 "-stack-list-arguments --skip-unavailable --simple-values"
8cb5cc78
YQ
120
121 # Test MI command '-stack-list-variables'.
122 mi_gdb_test "-stack-list-variables --simple-values" \
123 ".*\\^done,variables=\\\[\{name=\"j\",arg=\"1\",type=\"int\",value=\"4\"\},\{name=\"s\",arg=\"1\",type=\"char \\\*\",value=\"<unavailable>\"\},\{name=\"array\",type=\"unsigned char \\\[2\\\]\"\},\{name=\"i\",type=\"int\",value=\"<unavailable>\"\}\\\]" \
124 "-stack-list-variables --simple-values"
6211c335
YQ
125 mi_gdb_test "-stack-list-variables --skip-unavailable --simple-values" \
126 ".*\\^done,variables=\\\[\{name=\"j\",arg=\"1\",type=\"int\",value=\"4\"\},\{name=\"array\",type=\"unsigned char \\\[2\\\]\"\}\\\]" \
127 "-stack-list-variables --skip-unavailable --simple-values"
8cb5cc78 128
c898adb7
YQ
129 mi_gdb_test "-trace-find frame-number 1" \
130 ".*\\^done,found=\"1\",tracepoint=\"${decimal}\",traceframe=\"1\",frame=\{.*" \
131 "-trace-find frame-number 1"
132
133 set pcnum 0
134 if [is_amd64_regs_target] {
135 set pcnum 16
136 } elseif [is_x86_like_target] {
137 set pcnum 8
7890fb45
PL
138 } elseif [is_aarch64_target] {
139 set pcnum 32
c898adb7
YQ
140 } else {
141 # Other ports support tracepoint should define the number
142 # of its own pc register.
143 }
144
145 if { $pcnum != 0 } {
146 global hex
147 # Test that register 0 and PC are displayed, and register
148 # 0 is unavailable.
149 mi_gdb_test "-data-list-register-values x 0 ${pcnum}" \
150 ".*\\^done,register-values=\\\[\{number=\"0\",value=\"<unavailable>\"\},\{number=\"${pcnum}\",value=\"${hex}\"\}\\\]" \
151 "-data-list-register-values x"
152
153 # Test that only available register PC is displayed.
154 mi_gdb_test "-data-list-register-values --skip-unavailable x 0 ${pcnum}" \
155 ".*\\^done,register-values=\\\[\{number=\"${pcnum}\",value=\"${hex}\"\}\\\]" \
156 "-data-list-register-values --skip-unavailable x"
157 }
158
8cb5cc78
YQ
159 # Don't issue command '-trace-find none' to return from
160 # tfind mode (examining trace frames) on purpose, in order
161 # to test that GDB is able to clear its tracing-related local state
162 # in the next -target-select.
163 # mi_gdb_test "-trace-find none" ".*\\^done,found=\"0\".*" "-trace-find none"
164 }
165}
166
167test_trace_unavailable "live"
168
169# Change target to ctf if GDB supports it.
170set msg "-target-select ctf"
171send_gdb "-target-select ctf ${tracefile}.ctf\n"
172gdb_expect {
173 -re ".*\\^connected.*${mi_gdb_prompt}$" {
174 # GDB supports ctf, do the test.
175 test_trace_unavailable "ctf"
176 }
177 -re ".*\\^error,msg=\"Undefined target command.*${mi_gdb_prompt}$" {
178 # GDB doesn't support ctf, skip the test.
179 unsupported "gdb does not support ctf target"
180 }
181 -re ".*$mi_gdb_prompt$" {
182 fail "$msg"
183 }
184 timeout {
185 fail "$msg (timeout)"
186 }
187}
188
189# Change target to tfile.
190mi_gdb_test "-target-select tfile ${tracefile}.tf" ".*\\^connected.*" \
191 "-target-select tfile"
192test_trace_unavailable "tfile"
193
194mi_gdb_exit