]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.trace/packetlen.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.trace / packetlen.exp
CommitLineData
213516ef 1# Copyright 1998-2023 Free Software Foundation, Inc.
c906108c
SS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 15
c906108c
SS
16# This file was written by Michael Snyder (msnyder@cygnus.com)
17
18load_lib "trace-support.exp"
19
c906108c
SS
20
21gdb_exit
22gdb_start
23
497a5eb0 24standard_testfile actions.c
8bca2978
SL
25if ![gdb_trace_common_supports_arch] {
26 unsupported "no trace-common.h support for arch"
27 return -1
28}
f8b7eaf3
DJ
29if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
30 executable {debug nowarnings}] != "" } {
84c93cd5 31 untested "failed to compile"
f8b7eaf3 32 return -1
c906108c 33}
f8b7eaf3 34gdb_load $binfile
de7ff789
MS
35gdb_test "tstop" ".*" ""
36gdb_test "tfind none" ".*" ""
f8b7eaf3 37runto_main
c906108c
SS
38gdb_reinitialize_dir $srcdir/$subdir
39
89c6d320 40if {![gdb_target_supports_trace]} {
bc6c7af4 41 unsupported "current target does not support trace"
ae59b1da 42 return 1
f3ce5b9c
UW
43
44}
45
c906108c
SS
46# If testing on a remote host, download the source file.
47# remote_download host $srcdir/$subdir/$srcfile
48
49#
50# Test collecting a whole bunch of stuff at a single tracepoint.
51# The test is whether this crashes GDB.
52#
53
54gdb_delete_tracepoints
de7ff789 55gdb_test "trace gdb_c_test" ".*" ""
c906108c
SS
56gdb_trace_setactions "setup collect actions" \
57 "" \
58 "collect parm\[0\], parm\[1\], parm\[2\], parm\[3\]" "^$" \
59 "collect parm\[4\], parm\[5\], parm\[6\], parm\[7\]" "^$" \
60 "collect p, local_reg, local_static, local_static_sizeof" "^$" \
61 "collect local_long, stack_ptr, end_of_stack" "^$" \
62 "collect gdb_char_test, gdb_short_test, gdb_long_test" "^$" \
63 "collect gdb_arr_test, gdb_struct1_test, gdb_struct2_test" "^$" \
64 "collect gdb_structp_test, gdb_structpp_test, gdb_union1_test" "^$" \
65 "end" ""
66
e68d8fd4 67gdb_test_no_output "tstart" "survive the long packet send"
194ed413 68gdb_breakpoint "end" qualified
f8b7eaf3
DJ
69gdb_test "continue" \
70 "Continuing.*Breakpoint $decimal, end.*" \
71 "run trace experiment"
c906108c 72
e68d8fd4 73gdb_test_no_output "tstop" "confirm: survived the long packet send"
c906108c 74