1 # Copyright 1998-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 # This file was written by Michael Snyder (msnyder@cygnus.com)
18 load_lib "trace-support.exp"
20 standard_testfile actions.c
21 require gdb_trace_common_supports_arch
22 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
23 executable {debug nowarnings}] != "" } {
24 untested "failed to compile"
28 clean_restart $binfile
29 gdb_test "tstop" ".*" ""
30 gdb_test "tfind none" ".*" ""
33 if {![gdb_target_supports_trace]} {
34 unsupported "current target does not support trace"
39 # If testing on a remote host, download the source file.
40 # remote_download host $srcdir/$subdir/$srcfile
43 # Test collecting a whole bunch of stuff at a single tracepoint.
44 # The test is whether this crashes GDB.
47 gdb_delete_tracepoints
48 gdb_test "trace gdb_c_test" ".*" ""
49 gdb_trace_setactions "setup collect actions" \
51 "collect parm\[0\], parm\[1\], parm\[2\], parm\[3\]" "^$" \
52 "collect parm\[4\], parm\[5\], parm\[6\], parm\[7\]" "^$" \
53 "collect p, local_reg, local_static, local_static_sizeof" "^$" \
54 "collect local_long, stack_ptr, end_of_stack" "^$" \
55 "collect gdb_char_test, gdb_short_test, gdb_long_test" "^$" \
56 "collect gdb_arr_test, gdb_struct1_test, gdb_struct2_test" "^$" \
57 "collect gdb_structp_test, gdb_structpp_test, gdb_union1_test" "^$" \
60 gdb_test_no_output "tstart" "survive the long packet send"
61 gdb_breakpoint "end" qualified
63 "Continuing.*Breakpoint $decimal, end.*" \
64 "run trace experiment"
66 gdb_test_no_output "tstop" "confirm: survived the long packet send"