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