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