]>
Commit | Line | Data |
---|---|---|
6aba47ca | 1 | # Copyright 1998, 2007 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 | |
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 | set srcfile gdb_c_test.c | |
36 | set binfile [board_info target d490_binfile]; | |
37 | } else { | |
38 | set testfile "actions" | |
39 | set srcfile ${testfile}.c | |
40 | set binfile ${objdir}/${subdir}/${testfile} | |
41 | if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" $binfile \ | |
fc91c6c2 | 42 | executable {debug nowarnings}] != "" } { |
b60f0898 JB |
43 | untested while-stepping.exp |
44 | return -1 | |
c906108c SS |
45 | } |
46 | } | |
47 | gdb_reinitialize_dir $srcdir/$subdir | |
48 | ||
49 | # If testing on a remote host, download the source file. | |
50 | # remote_download host $srcdir/$subdir/$srcfile | |
51 | ||
52 | gdb_file_cmd $binfile | |
53 | ||
54 | # | |
55 | # test while-stepping command | |
56 | # | |
57 | ||
58 | gdb_delete_tracepoints | |
59 | set trcpt1 [gdb_gettpnum gdb_c_test] | |
60 | if { $trcpt1 <= 0 } then { | |
61 | fail "Could not find gdb_c_test function" | |
62 | return; | |
63 | } | |
64 | ||
65 | # 5.12 basic while-stepping command (collect regs) | |
66 | ||
67 | gdb_test "info tracepoints" \ | |
75ac9d7b | 68 | "Num Enb Address\[ \]+PassC StepC What.*$trcpt1.*0x.*\[\t \]+\[0-9\]+\[\t \]+0\[\t \]+.*in gdb_c_test.*" \ |
c906108c SS |
69 | "5.12: set a tracepoint, stepcount is zero" |
70 | ||
71 | set stepcount 12 | |
72 | ||
73 | gdb_trace_setactions "5.12: set stepcount to $stepcount" \ | |
74 | "" \ | |
75 | "while-stepping $stepcount" "" \ | |
76 | "collect \$regs" "^$" \ | |
77 | "end" "" | |
78 | ||
79 | gdb_test "info tracepoints" \ | |
75ac9d7b | 80 | "Num Enb Address\[ \]+PassC StepC What.*$trcpt1.*0x.*\[\t \]+\[0-9\]+\[\t \]+$stepcount\[\t \]+.*in gdb_c_test.*" \ |
c906108c SS |
81 | "5.12: confirm stepcount set to $stepcount" |
82 | ||
83 | gdb_test "info tracepoints" \ | |
75ac9d7b | 84 | "Num Enb Address\[ \]+PassC StepC What.* |
c906108c SS |
85 | .*while-stepping $stepcount.*" \ |
86 | "5.12: info trace shows \"while-stepping\"" | |
87 | ||
88 | ||
89 | # 5.13 step out of context while collecting local variable | |
90 | # [deferred to dynamic test section] | |
91 | ||
92 | proc while_stepping_bogus_arg { bogus msgstring } { | |
93 | global gdb_prompt; | |
94 | ||
95 | gdb_trace_setactions "$msgstring" \ | |
96 | "" \ | |
97 | "while-stepping $bogus" "\[Ee\]rror|\[Ww\]arning" | |
98 | } | |
99 | ||
100 | # 5.14 while-stepping (no argument) | |
101 | ||
102 | while_stepping_bogus_arg "" "5.14: while-stepping null stepcount" | |
103 | ||
104 | # 5.15 while-stepping (zero stepcount) | |
105 | ||
106 | while_stepping_bogus_arg "0" "5.15: while-stepping rejects zero stepcount" | |
107 | ||
108 | # 5.16 while-stepping without collecting anything | |
109 | gdb_trace_setactions "5.16: step without collecting anything" \ | |
110 | "" \ | |
111 | "while-stepping $stepcount" "^$" \ | |
112 | "end" "" | |
113 | ||
114 | gdb_test "info tracepoints" \ | |
115 | ".*$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.*" \ | |
116 | "5.16: confirm actions, step without collecting anything" | |
117 |