Updated copyright notices for most files.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / packetlen.exp
CommitLineData
9b254dd1 1# Copyright 1998, 2007, 2008 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
SS
15
16# Please email any bugs, comments, and/or additions to this file to:
17# bug-gdb@prep.ai.mit.edu
18
19# This file was written by Michael Snyder (msnyder@cygnus.com)
20
21load_lib "trace-support.exp"
22
23if $tracelevel then {
24 strace $tracelevel
25}
26
27set prms_id 0
28set bug_id 0
29
30gdb_exit
31gdb_start
32
33if [istarget "m68k-*-elf"] then {
34 load_lib "emc-support.exp"
35 set srcfile gdb_c_test.c
36 set binfile [board_info target d490_binfile];
37 gdb_test "set remotetimeout 6" "" ""
38 set timeout 500
39 gdb_target_monitor "$binfile"
40 # Give a TSTOP and ignore errors, to make sure any previous trace is off
41 gdb_test "tstop" "" ""
42 gdb_test "tfind none" "" ""
43 send_gdb "compare-sections CS\n"
44 gdb_expect {
45 -re "MIS-MATCHED.*$gdb_prompt $" {
b60f0898
JB
46 untested packetlen.exp
47 return -1
c906108c
SS
48 all tests in this module will fail.";
49 }
50 -re ".*$gdb_prompt $" { }
51 }
52} else {
53 set testfile "actions"
54 set srcfile ${testfile}.c
55 set binfile $objdir/$subdir/$testfile
56 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
fc91c6c2 57 executable {debug nowarnings}] != "" } {
b60f0898
JB
58 untested packetlen.exp
59 return -1
c906108c
SS
60 }
61 gdb_load $binfile
62 gdb_test "tstop" "" ""
63 gdb_test "tfind none" "" ""
64 runto_main
65}
66gdb_reinitialize_dir $srcdir/$subdir
67
68# If testing on a remote host, download the source file.
69# remote_download host $srcdir/$subdir/$srcfile
70
71#
72# Test collecting a whole bunch of stuff at a single tracepoint.
73# The test is whether this crashes GDB.
74#
75
76gdb_delete_tracepoints
77gdb_test "trace gdb_c_test" "" ""
78gdb_trace_setactions "setup collect actions" \
79 "" \
80 "collect parm\[0\], parm\[1\], parm\[2\], parm\[3\]" "^$" \
81 "collect parm\[4\], parm\[5\], parm\[6\], parm\[7\]" "^$" \
82 "collect p, local_reg, local_static, local_static_sizeof" "^$" \
83 "collect local_long, stack_ptr, end_of_stack" "^$" \
84 "collect gdb_char_test, gdb_short_test, gdb_long_test" "^$" \
85 "collect gdb_arr_test, gdb_struct1_test, gdb_struct2_test" "^$" \
86 "collect gdb_structp_test, gdb_structpp_test, gdb_union1_test" "^$" \
87 "end" ""
88
89gdb_test "tstart" "" "survive the long packet send"
90if [istarget "m68k-*-elf"] then {
91 gdb_emclaptop_command "85,1,2,3,4,5,6"
92 sleep 5
93} else {
94 gdb_test "break end" "" ""
95 gdb_test "continue" \
96 "Continuing.*Breakpoint $decimal, end.*" \
97 "run trace experiment"
98}
99
100gdb_test "tstop" "" "confirm: survived the long packet send"
101
This page took 0.77844 seconds and 4 git commands to generate.