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