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
|
# Copyright 2013-2020 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
if ![gdb_trace_common_supports_arch] {
unsupported "no trace-common.h support for arch"
return -1
}
if {[prepare_for_testing "failed to prepare" $testfile $srcfile debug]} {
return -1
}
proc test_actions_changed { } {
gdb_breakpoint "end" qualified
gdb_test "trace subr" "Tracepoint .*" \
"tracepoint at subr"
# The first set of tests are regression tests for a GDB bug where
# the while-stepping count of a tracepoint would be left stale if
# the tracepoint's actions were redefined, and the new action list
# had no while-stepping action.
# First pass, define simple action.
with_test_prefix "1" {
gdb_trace_setactions "define simple action" \
"" \
"collect parm" "^$"
gdb_test_no_output "tstart"
gdb_test "continue" ".*Breakpoint \[0-9\]+, end \\(i=1\\) .*" \
"advance through tracing"
gdb_test "tstatus" ".*Collected 1 trace frame.*" \
"collected 1 trace frame"
gdb_test_no_output "tstop"
}
# Redefine action, run second trace.
with_test_prefix "2" {
gdb_trace_setactions "redefine simple action" \
"" \
"collect keeping, busy" "^$"
gdb_test_no_output "tstart"
gdb_test "continue" ".*Breakpoint \[0-9\]+, end \\(i=2\\) .*" \
"advance through tracing"
gdb_test "tstatus" ".*Collected 1 trace frame.*" \
"collected 1 trace frame"
gdb_test_no_output "tstop"
}
# Redefine to stepping action, run third trace.
with_test_prefix "3" {
gdb_trace_setactions "redefine to stepping action" \
"" \
"collect parm" "^$" \
"while-stepping 5" "^$" \
"collect parm" "^$" \
"end" "^$"
gdb_test_no_output "tstart"
gdb_test "continue" ".*Breakpoint \[0-9\]+, end \\(i=3\\) .*" \
"advance through tracing"
gdb_test "tstatus" ".*Collected 6 trace frames.*" \
"collected 6 trace frames"
gdb_test_no_output "tstop"
}
# Redefine to non-stepping, run fourth trace.
with_test_prefix "4" {
gdb_trace_setactions "redefine to non-stepping action" \
"" \
"collect parm" "^$"
gdb_test_no_output "tstart"
gdb_test "continue" ".*Breakpoint \[0-9\]+, end \\(i=4\\) .*" \
"advance through tracing"
gdb_test "tstatus" ".*Collected 1 trace frame.*" \
"collected 1 trace frame"
gdb_test_no_output "tstop"
}
# The following tests are related to the above, but use two
# tracepoints. They are regression tests for a GDB bug where only
# the first tracepoint would end up with the step count set.
# Store the first tracepoint's number.
gdb_test_no_output "set \$prev_tpnum=\$tpnum" "store previous \$tpnum"
# And here's the second tracepoint.
gdb_test "trace subr2" "Tracepoint .*" "tracepoint at subr2"
# Set a stepping action in both tracepoints, with the "commands"
# command.
with_test_prefix "5" {
gdb_trace_setcommands \
"redefine 2 tracepoints to stepping action, using commands" \
"\$prev_tpnum-\$tpnum" \
"collect parm" "^$" \
"while-stepping 5" "^$" \
"collect parm" "^$" \
"end" "^$"
gdb_test_no_output "tstart"
gdb_test "continue" ".*Breakpoint \[0-9\]+, end \\(i=5\\) .*" \
"advance through tracing"
gdb_test "tstatus" ".*Collected 12 trace frames.*" \
"collected 12 trace frames"
gdb_test_no_output "tstop"
}
# Redefine the actions of both tracepoints to non-stepping, also
# using the "commands" command.
with_test_prefix "6" {
gdb_trace_setcommands \
"redefine 2 tracepoints to non-stepping action, using commands" \
"\$prev_tpnum-\$tpnum" \
"collect parm" "^$"
gdb_test_no_output "tstart"
gdb_test "continue" ".*Breakpoint \[0-9\]+, end \\(i=6\\) .*" \
"advance through tracing"
gdb_test "tstatus" ".*Collected 2 trace frame.*" \
"collected 2 trace frames"
gdb_test_no_output "tstop"
}
}
# Check whether the target supports tracepoints.
clean_restart $testfile
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
}
test_actions_changed
return 0
|