Add testcase for locals identified with FUNCTION::VAR syntax.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / while-stepping.exp
CommitLineData
c5a57081 1# Copyright 1998, 2007-2012 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
c906108c
SS
24
25gdb_exit
26gdb_start
27
f8b7eaf3
DJ
28set testfile "actions"
29set srcfile ${testfile}.c
30set binfile ${objdir}/${subdir}/while-stepping
31if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" $binfile \
32 executable {debug nowarnings}] != "" } {
33 untested while-stepping.exp
34 return -1
c906108c
SS
35}
36gdb_reinitialize_dir $srcdir/$subdir
37
38# If testing on a remote host, download the source file.
39# remote_download host $srcdir/$subdir/$srcfile
40
41gdb_file_cmd $binfile
42
43#
44# test while-stepping command
45#
46
47gdb_delete_tracepoints
48set trcpt1 [gdb_gettpnum gdb_c_test]
49if { $trcpt1 <= 0 } then {
50 fail "Could not find gdb_c_test function"
51 return;
52}
53
54# 5.12 basic while-stepping command (collect regs)
55
56gdb_test "info tracepoints" \
1042e4c0
SS
57 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
58\[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+" \
c906108c
SS
59 "5.12: set a tracepoint, stepcount is zero"
60
61set stepcount 12
62
63gdb_trace_setactions "5.12: set stepcount to $stepcount" \
64 "" \
65 "while-stepping $stepcount" "" \
66 "collect \$regs" "^$" \
67 "end" ""
68
69gdb_test "info tracepoints" \
1042e4c0
SS
70 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
71\[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
a7bdde9e 72\[\t \]+while-stepping 12.*" \
c906108c
SS
73 "5.12: info trace shows \"while-stepping\""
74
c906108c
SS
75# 5.13 step out of context while collecting local variable
76# [deferred to dynamic test section]
77
78proc while_stepping_bogus_arg { bogus msgstring } {
79 global gdb_prompt;
80
81 gdb_trace_setactions "$msgstring" \
82 "" \
fff87407 83 "while-stepping $bogus" ".*while-stepping step count"
c906108c
SS
84}
85
86# 5.14 while-stepping (no argument)
87
88while_stepping_bogus_arg "" "5.14: while-stepping null stepcount"
89
90# 5.15 while-stepping (zero stepcount)
91
92while_stepping_bogus_arg "0" "5.15: while-stepping rejects zero stepcount"
93
94# 5.16 while-stepping without collecting anything
95gdb_trace_setactions "5.16: step without collecting anything" \
96 "" \
97 "while-stepping $stepcount" "^$" \
98 "end" ""
99
100gdb_test "info tracepoints" \
1042e4c0
SS
101 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
102\[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
103.*while-stepping $stepcount.*
1042e4c0 104.*end.*" \
c906108c
SS
105 "5.16: confirm actions, step without collecting anything"
106
This page took 1.621867 seconds and 4 git commands to generate.