/:
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / annota3.exp
CommitLineData
4c38e0a4 1# Copyright 2003, 2004, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6009d884
AC
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
6009d884 6# (at your option) any later version.
e22f8b7c 7#
6009d884
AC
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#
6009d884 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/>.
6009d884 15
6009d884
AC
16# This file was written by Elena Zannoni (ezannoni@cygnus.com)
17
18if $tracelevel then {
19 strace $tracelevel
20}
21
22
23#
24# test running programs
25#
6009d884
AC
26
27if { [skip_cplus_tests] } { continue }
28
29set testfile "annota3"
30set srcfile ${testfile}.cc
31set binfile ${objdir}/${subdir}/${testfile}
32
fc91c6c2 33if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++ nowarnings}] != "" } {
b60f0898
JB
34 untested annota3.exp
35 return -1
6009d884
AC
36}
37
38# are we on a target board? If so, don't run these tests.
39# note: this is necessary because we cannot use runto_main (which would
40# work for remote targets too) because of the different prompt we get
41# when using annotation level 2.
42#
43if [is_remote target] then {
44 return 0
45}
46
47
48gdb_exit
49gdb_start
50gdb_reinitialize_dir $srcdir/$subdir
51gdb_load ${binfile}
52
53if [target_info exists gdb_stub] {
54 gdb_step_for_stub;
55}
56
57#
58# line number where we need to stop in main
59#
60set main_line 25
61
62# The commands we test here produce many lines of output; disable "press
63# <return> to continue" prompts.
64send_gdb "set height 0\n"
65gdb_expect -re "$gdb_prompt $"
66
67#
68# break at main
69#
70gdb_test "break 25" \
71 "Breakpoint.*at.* file .*$srcfile, line.*" \
72 "breakpoint main"
73
74
75#
76# NOTE: this prompt is OK only when the annotation level is > 1
77# NOTE: When this prompt is in use the gdb_test procedure cannot be used because
78# it assumes that the last char of the gdb_prompt is a white space. This is not
79# true with this annotated prompt. So we must use send_gdb and gdb_expect.
80#
81
82set old_gdb_prompt $gdb_prompt
83set gdb_prompt "\r\n\032\032pre-prompt\r\n$gdb_prompt \r\n\032\032prompt\r\n"
84
85send_gdb "set annotate 3\n"
86gdb_expect_list "annotation set at level 3" "\r\n$gdb_prompt$" {
87 "set annotate 3"
88}
89
90send_gdb "run\n"
91gdb_expect_list "first run until main breakpoint" "$gdb_prompt$" {
92 "\r\n\032\032post-prompt\r\n"
93 "Starting program: .*annota3 \r\n"
6009d884 94 "\r\n\032\032starting\r\n"
6009d884
AC
95 "\r\n\032\032breakpoint 1\r\n"
96 "\r\n"
616f635d
NR
97 "Breakpoint 1, "
98 "\r\n\032\032frame-begin 0 0x\[0-9a-z\]+\r\n"
99 "main \\(\\) at .*annota3.cc:25\r\n"
6009d884
AC
100 "\r\n\032\032source.*annota3.cc:25:.*:beg:0x\[0-9a-z\]+\r\n"
101 "\r\n\032\032stopped\r\n"
102}
103
104#
105# print class 'a' with public fields.
106#
107send_gdb "print a\n"
108gdb_expect_list "print class" "$gdb_prompt$" {
109 "\r\n\032\032post-prompt\r\n"
110 ".*= \\{x = 1, y = 2\\}\r\n"
111}
112
113#
114# continue until exit
115# this will test:
116# annotate-exited
117#
118send_gdb "continue\n"
119gdb_expect_list "continue to exit" "$gdb_prompt$" {
120 "\r\n\032\032post-prompt\r\n"
121 "Continuing.\r\n"
122 "\r\n\032\032starting\r\n"
6009d884 123 "a.x is 1\r\n"
6009d884
AC
124 "\r\n\032\032exited 0\r\n"
125 "\r\n"
126 "Program exited normally.\r\n"
6009d884
AC
127 "\r\n\032\032stopped\r\n"
128}
129
130#
131# delete all breakpoints
132#
133send_gdb "delete\n"
134gdb_expect {
135 -re ".*Delete all breakpoints. \\(y or n\\) \r\n\032\032query.*$" {
136 send_gdb "y\n"
137 gdb_expect {
138 -re "\r\n\032\032post-query\r\n$gdb_prompt$" { pass "delete bps" }
139 -re ".*$gdb_prompt$" { fail "delete bps" }
140 timeout { fail "delete bps (timeout)" }
141 }
142 }
143 -re ".*$gdb_prompt$" { fail "delete bps" }
144 timeout { fail "delete bps (timeout)" }
145}
146
147#
148# break at first line of main.
149#
150send_gdb "break 22\n"
151gdb_expect_list "break at main" "$gdb_prompt$" {
152 "\r\n\032\032post-prompt\r\n"
6009d884
AC
153 "Breakpoint.*at 0x\[a-z0-9\]+: file.*annota3.cc, line 22.\r\n"
154}
155
156#
157# run program up to breakpoint.
158#
159
160
161send_gdb "run\n"
162gdb_expect_list "second run until main breakpoint" "$gdb_prompt$" {
163 "\r\n\032\032post-prompt\r\n"
6009d884 164 "\r\n\032\032starting\r\n"
6009d884
AC
165 "\r\n\032\032breakpoint 2\r\n"
166 "\r\n"
616f635d
NR
167 "Breakpoint 2, "
168 "\r\n\032\032frame-begin 0 0x\[0-9a-z\]+\r\n"
169 "main \\(\\) at .*annota3.cc:22\r\n"
6009d884
AC
170 "\r\n\032\032source.*annota3.cc:22:.*:beg:0x\[0-9a-z\]+\r\n"
171 "\r\n\032\032stopped\r\n"
172}
173
174#
175# set up a watch point on a.x
176#
177send_gdb "watch a.x\n"
178gdb_expect_list "set watch on a.x" "$gdb_prompt$" {
179 "\r\n\032\032post-prompt\r\n"
6009d884
AC
180 ".*atchpoint 3: a.x\r\n" \
181}
182
183#
184# do a next, so that the watchpoint triggers. This will test:
185# annotate-watchpoint
186#
187send_gdb "next\n"
188gdb_expect {
cc8e9b12 189 -re "\r\n\032\032post-prompt\r\n\r\n\032\032starting\r\n\r\n\032\032watchpoint 3\r\n.*atchpoint 3: a.x\r\n\r\nOld value = 0\r\nNew value = 1\r\n\r\n(\032\032frame-begin 0 0x\[0-9a-z\]+\r\n|)main \\(\\) at .*$srcfile:$decimal\r\n\r\n\032\032source .*$srcfile.*beg:$hex\r\n\r\n\032\032stopped\r\n.*$gdb_prompt$" {
6009d884
AC
190 pass "watch triggered on a.x"
191 }
3ca42dbe 192 -re "\r\n\032\032post-prompt\r\n\r\n\032\032starting\r\n\r\n\032\032source .*$srcfile.*beg:$hex\r\n\r\n\032\032stopped\r\n$gdb_prompt$" {
6009d884
AC
193 kfail "gdb/38" "watch triggered on a.x"
194 }
195 -re ".*$gdb_prompt$" {
196 fail "watch triggered on a.x"
197 }
198 timeout {
199 fail "watch triggered on a.x (timeout)"
200 }
201}
202
203#
204# send ^C to gdb, so that the quit() function gets called
205# and annotate-quit is tested
206# test:
207# annotate-quit
208#
6009d884
AC
209send_gdb "\003"
210gdb_expect_list "annotate-quit" "$gdb_prompt$" {
211 "\r\n\032\032error-begin\r\n"
212 "Quit\r\n"
213 "\r\n\032\032quit\r\n"
214}
215
216#
217# FIXME: the testsuite does not currently have tests for
218# annotate_catchpoints and annotate_function_call
219# and a few variants of the annotations that are
220# tested (marked by FIXME on the annot?.exp files)
221#
222
223# reinstall the old prompt for the rest of the testsuite.
224
225set gdb_prompt $old_gdb_prompt
226
This page took 0.643444 seconds and 4 git commands to generate.