* doc/internals.texi: Fix trivial syntax errors.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / while-stepping.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 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 \
fc91c6c2 38 executable {debug nowarnings}] != "" } {
b60f0898
JB
39 untested while-stepping.exp
40 return -1
c906108c
SS
41 }
42}
43gdb_reinitialize_dir $srcdir/$subdir
44
45# If testing on a remote host, download the source file.
46# remote_download host $srcdir/$subdir/$srcfile
47
48gdb_file_cmd $binfile
49
50#
51# test while-stepping command
52#
53
54gdb_delete_tracepoints
55set trcpt1 [gdb_gettpnum gdb_c_test]
56if { $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
63gdb_test "info tracepoints" \
75ac9d7b 64 "Num Enb Address\[ \]+PassC StepC What.*$trcpt1.*0x.*\[\t \]+\[0-9\]+\[\t \]+0\[\t \]+.*in gdb_c_test.*" \
c906108c
SS
65 "5.12: set a tracepoint, stepcount is zero"
66
67set stepcount 12
68
69gdb_trace_setactions "5.12: set stepcount to $stepcount" \
70 "" \
71 "while-stepping $stepcount" "" \
72 "collect \$regs" "^$" \
73 "end" ""
74
75gdb_test "info tracepoints" \
75ac9d7b 76 "Num Enb Address\[ \]+PassC StepC What.*$trcpt1.*0x.*\[\t \]+\[0-9\]+\[\t \]+$stepcount\[\t \]+.*in gdb_c_test.*" \
c906108c
SS
77 "5.12: confirm stepcount set to $stepcount"
78
79gdb_test "info tracepoints" \
75ac9d7b 80 "Num Enb Address\[ \]+PassC StepC What.*
c906108c
SS
81.*while-stepping $stepcount.*" \
82 "5.12: info trace shows \"while-stepping\""
83
84
85# 5.13 step out of context while collecting local variable
86# [deferred to dynamic test section]
87
88proc while_stepping_bogus_arg { bogus msgstring } {
89 global gdb_prompt;
90
91 gdb_trace_setactions "$msgstring" \
92 "" \
93 "while-stepping $bogus" "\[Ee\]rror|\[Ww\]arning"
94}
95
96# 5.14 while-stepping (no argument)
97
98while_stepping_bogus_arg "" "5.14: while-stepping null stepcount"
99
100# 5.15 while-stepping (zero stepcount)
101
102while_stepping_bogus_arg "0" "5.15: while-stepping rejects zero stepcount"
103
104# 5.16 while-stepping without collecting anything
105gdb_trace_setactions "5.16: step without collecting anything" \
106 "" \
107 "while-stepping $stepcount" "^$" \
108 "end" ""
109
110gdb_test "info tracepoints" \
111 ".*$trcpt1.*0x.*\[\t \]+\[0-9\]+\[\t \]+$stepcount\[\t \]+.*in gdb_c_test.*\[ \t\]+Actions for tracepoint $trcpt1:.*\[ \t\]+while-stepping $stepcount.*\[ \t\]+end.*\[ \t\]+end.*" \
112 "5.16: confirm actions, step without collecting anything"
113
This page took 0.805852 seconds and 4 git commands to generate.