2009-03-30 Stan Shebs <stan@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / while-stepping.exp
1 # Copyright 1998, 2007, 2008, 2009 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 3 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, see <http://www.gnu.org/licenses/>.
15
16 # This file was written by Michael Snyder (msnyder@cygnus.com)
17
18 load_lib "trace-support.exp";
19
20 if $tracelevel then {
21 strace $tracelevel
22 }
23
24 set prms_id 0
25 set bug_id 0
26
27 gdb_exit
28 gdb_start
29
30 if [istarget "m68k-*-elf"] then {
31 set srcfile gdb_c_test.c
32 set binfile [board_info target d490_binfile];
33 } else {
34 set testfile "actions"
35 set srcfile ${testfile}.c
36 set binfile ${objdir}/${subdir}/${testfile}
37 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" $binfile \
38 executable {debug nowarnings}] != "" } {
39 untested while-stepping.exp
40 return -1
41 }
42 }
43 gdb_reinitialize_dir $srcdir/$subdir
44
45 # If testing on a remote host, download the source file.
46 # remote_download host $srcdir/$subdir/$srcfile
47
48 gdb_file_cmd $binfile
49
50 #
51 # test while-stepping command
52 #
53
54 gdb_delete_tracepoints
55 set trcpt1 [gdb_gettpnum gdb_c_test]
56 if { $trcpt1 <= 0 } then {
57 fail "Could not find gdb_c_test function"
58 return;
59 }
60
61 # 5.12 basic while-stepping command (collect regs)
62
63 gdb_test "info tracepoints" \
64 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
65 \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+" \
66 "5.12: set a tracepoint, stepcount is zero"
67
68 set stepcount 12
69
70 gdb_trace_setactions "5.12: set stepcount to $stepcount" \
71 "" \
72 "while-stepping $stepcount" "" \
73 "collect \$regs" "^$" \
74 "end" ""
75
76 gdb_test "info tracepoints" \
77 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
78 \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
79 \[\t \]+step count 12 .*" \
80 "5.12: confirm stepcount set to $stepcount"
81
82 gdb_test "info tracepoints" \
83 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
84 .*while-stepping $stepcount.*" \
85 "5.12: info trace shows \"while-stepping\""
86
87
88 # 5.13 step out of context while collecting local variable
89 # [deferred to dynamic test section]
90
91 proc while_stepping_bogus_arg { bogus msgstring } {
92 global gdb_prompt;
93
94 gdb_trace_setactions "$msgstring" \
95 "" \
96 "while-stepping $bogus" "\[Ee\]rror|\[Ww\]arning"
97 }
98
99 # 5.14 while-stepping (no argument)
100
101 while_stepping_bogus_arg "" "5.14: while-stepping null stepcount"
102
103 # 5.15 while-stepping (zero stepcount)
104
105 while_stepping_bogus_arg "0" "5.15: while-stepping rejects zero stepcount"
106
107 # 5.16 while-stepping without collecting anything
108 gdb_trace_setactions "5.16: step without collecting anything" \
109 "" \
110 "while-stepping $stepcount" "^$" \
111 "end" ""
112
113 gdb_test "info tracepoints" \
114 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
115 \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
116 .*while-stepping $stepcount.*
117 .*end.*
118 .*end.*" \
119 "5.16: confirm actions, step without collecting anything"
120
This page took 0.032785 seconds and 5 git commands to generate.