1# Copyright (C) 1998 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 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
21if $tracelevel then {
22        strace $tracelevel
23}
24
25if { [skip_hp_tests] } then { continue }
26
27set testfile1 "average"
28set testfile2 "sum"
29set testfile "xdb-test"
30set binfile1 ${objdir}/${subdir}/${testfile1}
31set binfile2 ${objdir}/${subdir}/${testfile2}
32set binfile ${objdir}/${subdir}/${testfile}
33
34if  { [gdb_compile "${srcdir}/${subdir}/average.c" "${binfile1}.o" object {debug}] != "" } {
35     gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
36}
37
38if  { [gdb_compile "${srcdir}/${subdir}/sum.c" "${binfile2}.o" object {debug}] != "" } {
39     gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
40}
41
42if  { [gdb_compile "${binfile1}.o ${binfile2}.o" ${binfile} executable {debug}] != "" } {
43     gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
44}
45
46if [get_compiler_info ${binfile}] {
47    return -1;
48}
49if { $gcc_compiled } then { continue }
50
51
52proc xdb_reinitialize_dir { subdir } {
53    global gdb_prompt
54
55   send_gdb "D\n"
56    gdb_expect {
57        -re "Reinitialize source path to empty.*y or n. " {
58            send_gdb "y\n"
59            gdb_expect {
60                -re "Source directories searched.*$gdb_prompt $" {
61                    send_gdb "D $subdir\n"
62                    gdb_expect {
63                        -re "Source directories searched.*$gdb_prompt $" {
64                            verbose "Dir set to $subdir"
65                        }
66                        -re ".*$gdb_prompt $" {
67                            perror "Dir \"$subdir\" failed."
68                        }
69                    }
70                }
71                -re ".*$gdb_prompt $" {
72                    perror "Dir \"$subdir\" failed."
73                }
74            }
75        }
76        -re ".*$gdb_prompt $" {
77            perror "Dir \"$subdir\" failed."
78        }
79    }
80}
81
82#
83#test_search
84#
85proc test_search { } {
86    gdb_test "set listsize 4" ""
87    gdb_test "list average.c:1" "1\[ \t\]+/. This is a sample .*"
88    gdb_test "/ print_average" "17\[ \t\]+void print_average\\(int \\*list.*"
89    gdb_test "/ print_average" "19\[ \t\]+void print_average\\(list, low, high\\)"
90    gdb_test "/ print_average" "42\[ \t\]+print_average \\(my_list, first, last\\);"
91    gdb_test "? print_average" "19\[ \t\]+void print_average\\(list, low, high\\)"
92    gdb_test "? sum" "9\[ \t]+extern int sum\\(\\);"
93}
94
95#
96#test_viewing_loc
97#
98proc test_viewing_loc { } {
99    gdb_test "L" "No stack."
100    gdb_test "break main" ""
101    gdb_test "R" ""
102    gdb_test "L" "#0\[ \t\]+main \\(\\) at.*average.c:38\r\n38\[ \t\]+int first = 0, last = 0;"
103}
104
105#
106#test_dir_list
107#
108proc test_dir_list { } {
109    gdb_test "ld" "Source directories searched: .*"
110}
111
112#
113#test_list_sources
114#
115proc test_list_sources { } {
116    if [istarget "hppa64-*-*"] {
117	gdb_test "lf" "Source files for which symbols have been read in:\r\n\r\n.*average\\.c.*Source files for which symbols will be read in on demand:\r\n\r\nglobals,.*\[se\]\[un\]\[md\]\\.c.*\[se\]\[un\]\[md\]\\.c"
118    } else {
119	gdb_test "lf" "Source files for which symbols have been read in:\r\n\r\n.*average\\.c.*\r\n\r\nSource files for which symbols will be read in on demand:\r\n\r\nglobals, end\\.c,.*sum\\.c"
120    }
121}
122#
123#test_vlist
124#
125proc test_vlist { } {
126    gdb_test "v main" "34\[ \t\]+main \\(\\)\r\n35\[ \t\]+#endif\r\n36\[ \t\]+.\r\n37\[ \t\]+char c;"
127}
128
129#
130#test_va
131#
132proc test_va { } {
133    if [istarget "hppa64-*-*"] {
134	gdb_test "va main" "Dump of assembler code for function main:\r\n.*0x.* <main>:\[ \t\]+std %rp,-0x10\\(%sp\\)\r\n0x.* <main\\+4>:\[ \t\]+std,ma %r3,0xd0\\(%sp\\)\r\n.*0x.* <main\\+8>:\[ \t\]+std %r4,-0xc8\\(%sp\\)\r\n.*0x.* <main\\+12>:\[ \t\]+copy %ret1,%r3\r\n.*"
135    } else {
136	gdb_test "va main" "Dump of assembler code for function main:\r\n.*0x.* <main>:\[ \t\]+stw %rp,-0x14\\(%sr0,%sp\\)\r\n0x.* <main\\+4>:\[ \t\]+ldo 0x\[48\]0\\(%sp\\),%sp\r\n.*0x.* <main\\+8>:\[ \t\]+stw %r0,-0x.*\\(%sr0,%sp\\)\r\n.*0x.* <main\\+12>:\[ \t\]+stw %r0,-0x.*\\(%sr0,%sp\\)\r\n.*"
137    }
138}
139
140#
141#test_list_globals
142#
143proc test_list_globals { } {
144    gdb_test "lg" "All defined variables:\r\n\r\nFile globals:.*"
145#    gdb_test "lg" "All defined variables:\r\n\r\nFile globals:\r\nchar __buffer.512.;\r\nint __d_eh_catch_catch;\r\nint __d_eh_catch_throw;.*"
146}
147
148#
149#test_list_registers
150#
151proc test_list_registers { } {
152    if [istarget "hppa64-*-*"] {
153	gdb_test "lr" "\[ \t\]+flags:.*r17:.*pcsqh:.*cr0:.*\r\n\[ \t\]+r1:.*r18:.*pcoqt:.*cr8:.*"
154    } else {
155	gdb_test "lr" "\[ \t\]+flags:.*r18:.*pcsqt:.*ccr:.*\r\n\[ \t\]+r1:.*r19:.*eiem:.*cr12:.*"
156    }
157    gdb_test "lr r1" "r1 .*"
158}
159
160#
161#test_backtrace
162#
163proc test_backtrace { } {
164    gdb_test "t" "#0  main \\(\\) at.*average.c:39"
165    gdb_test "T" "#0  main \\(\\) at.*average.c:39\r\n\[ \t\]+c = *.*\r\n\[ \t\]+first = 0\r\n\[ \t\]+last = 0"
166
167    gdb_test "break sum" ""
168    gdb_test "cont" ""
169    gdb_test "next"
170
171    gdb_test "t" "#0  sum \\(list=0x.*, low=0, high=9\\) at.*sum\.c:12\r\n#1  0x.* in print_average \\(list=0x.*, low=0, high=9\\) at.*average\.c:24\r\n#2  0x.* in main \\(\\) at.*average\.c:42"
172    gdb_test "t 1" "#0  sum \\(list=0x.*, low=0, high=9\\) at.*sum\.c:12\r\n\\(More stack frames follow\.\.\.\\)"
173    gdb_test "T" "#0  sum \\(list=0x.*, low=0, high=9\\) at.*sum\.c:12\r\n\[ \t\]+i = 0\r\n\[ \t\]+s = 0\r\n#1  0x.* in print_average \\(list=0x.*, low=0, high=9\\) at.*average\.c:24\r\n\[ \t\]+total = 0\r\n\[ \t\]+num_elements = 0\r\n\[ \t\]+average = 0\r\n#2  0x.* in main \\(\\) at.*average\.c:42\r\n\[ \t\]+c = *.*\r\n\[ \t\]+first = 0\r\n\[ \t\]+last = 9"
174    gdb_test "T 1" "#0  sum \\(list=0x.*, low=0, high=9\\) at.*sum\.c:12\r\n\[ \t\]+i = 0\r\n\[ \t\]+s = 0\r\n\\(More stack frames follow\.\.\.\\)"
175
176    gdb_test "V" "#0  sum \\(list=0x.*, low=0, high=9\\) at.*sum\.c:12\r\n\\12\[ \t\]+for \\(i = low;.*\\)"
177    gdb_test "V 1" "#1  0x.* in print_average \\(list=0x.*, low=0, high=9\\) at.*average\.c:24\r\n24\[ \t\]+total = sum\\(list, low, high\\);"
178}
179
180#
181# test_go
182#
183proc test_go { }  {
184    gdb_test "break main" ""
185    gdb_test "R" ""
186
187    gdb_test "g +1" "Breakpoint.*at 0x.*: file.*average\.c, line 39\.\r\nContinuing at 0x.*\.\r\nmain \\(\\) at.*average\.c:39\r\n39\[ \t\]+last = num-1;"
188    gdb_test "g 42" "Breakpoint.*at 0x.*: file.*average\.c, line 42\.\r\nContinuing at 0x.*\.\r\nmain \\(\\) at.*average\.c:42\r\n42\[ \t\]+print_average \\(my_list, first, last\\);"
189
190}
191
192#
193#test_breakpoints
194#
195proc test_breakpoints { } {
196    global gdb_prompt
197
198    gdb_test "sb" ""
199    gdb_test "lb" "Num.*Type.*Disp.*Enb.*Address.*What\r\n1\[ \r\]+breakpoint\[ \r\]+keep n.*in main at.*average\.c:38.*"
200    gdb_test "ab" ""
201    gdb_test "lb" "Num.*Type.*Disp.*Enb.*Address.*What\r\n1\[ \r\]+breakpoint\[ \r\]+keep y.*in main at.*average\.c:38.*"
202    gdb_test "ba sum" "Breakpoint.*at.*: file.*sum\.c, line 11\."
203    gdb_test "cont" ""
204    gdb_test "bx" "Breakpoint.*at.*: file.*sum.c, line 15\."
205    #gdb_test "bx if (1)" "Breakpoint.*at.*: file.*sum.c, line 15\."
206    gdb_test "bx 1" "Breakpoint.*at.*: file.*average.c, line 29\."
207    gdb_test "bx 1 if (1)" "Breakpoint.*at.*: file.*average.c, line 29\."
208    gdb_test "bc 1 2" "Will ignore next 2 crossings of breakpoint 1\."
209    gdb_test "lb 1" "Num.*Type.*Disp.*Enb.*Address.*What\r\n1\[ \r\]+breakpoint\[ \r\]+keep y.*in main at.*average\.c:38\r\n.*breakpoint already hit 1 time\r\n.*ignore next 2 hits.*"
210
211    send_gdb "db\n"
212    gdb_expect {
213        -re "Delete all breakpoints.*y or n. $" {
214            send_gdb "y\n"
215            exp_continue
216        }
217        -re "y\r\n$gdb_prompt $" {}
218        -re ".*$gdb_prompt $" { # This happens if there were no breakpoints
219            }
220        timeout { perror "Delete all breakpoints (timeout)" ; return }
221    }
222    send_gdb "lb\n"
223    gdb_expect {
224        -re "No breakpoints or watchpoints..*$gdb_prompt $" {}
225        -re ".*$gdb_prompt $" { perror "breakpoints not deleted" ; return }
226        timeout { perror "info breakpoints (timeout)" ; return }
227    }
228gdb_test "xbreak" "Breakpoint.*at.*file.*sum.c, line 15."
229gdb_test "xbreak print_average" "Breakpoint.*at.*file.*average.c, line 29."
230gdb_test "xbreak if (1)" "Note: breakpoint.*also set at pc.*Breakpoint.*at.*file.*sum.c, line 15."
231gdb_test "xbreak print_average if (1)" "Note: breakpoint.*also set at pc.*Breakpoint.*at.*file.*average.c, line 29."
232
233    send_gdb "lb\n"
234    gdb_expect {
235        -re "Num Type           Disp Enb Address    What.*breakpoint     keep y.*sum.c:15.*breakpoint     keep y.*average.c:29.*breakpoint     keep y.*sum.c:15.*stop only if 1.*breakpoint     keep y.*average.c:29.*stop only if 1.*$gdb_prompt $" {pass "lb on xbreaks"}
236        -re ".*$gdb_prompt $" { fail "breakpoints not deleted"}
237        timeout { fail "info breakpoints (timeout)" }
238    }
239
240}
241
242#
243# test_signals
244#
245proc test_signals { } {
246    gdb_test "handle SIGTERM nostop noprint" ""
247    gdb_test "z 15 s" "Signal.*Stop.*Print.*Pass to program.*Description\r\nSIGTERM.*Yes.*Yes.*Yes.*Terminated"
248    gdb_test "z 15 r" "Signal.*Stop.*Print.*Pass to program.*Description\r\nSIGTERM.*No.*No.*Yes.*Terminated"
249    gdb_test "z 15 i" "Signal.*Stop.*Print.*Pass to program.*Description\r\nSIGTERM.*No.*No.*No.*Terminated"
250    gdb_test "z 15 r" "Signal.*Stop.*Print.*Pass to program.*Description\r\nSIGTERM.*No.*Yes.*No.*Terminated"
251    gdb_test "z 15 Q" "Signal.*Stop.*Print.*Pass to program.*Description\r\nSIGTERM.*No.*No.*No.*Terminated"
252    gdb_test "lz" "Signal.*Stop.*Print.*Pass to program.*Description\r\n\r\nSIGHUP.*Yes.*"
253}
254
255
256
257# Start with a fresh gdb.
258global GDBFLAGS
259set saved_gdbflags $GDBFLAGS
260
261set GDBFLAGS "$GDBFLAGS --xdb"
262
263gdb_exit
264gdb_start
265
266xdb_reinitialize_dir $srcdir/$subdir
267
268gdb_load ${binfile}
269send_gdb "set width 0\n"
270gdb_expect -re "$gdb_prompt $"
271test_search
272test_viewing_loc
273test_dir_list
274test_list_sources
275test_vlist
276test_va
277gdb_test "next"
278gdb_test "l" "No arguments.\r\nc = *.*\r\nfirst = 0\r\nlast = 0"
279#test_list_globals
280test_list_registers
281test_backtrace
282
283# Start with a fresh gdb.
284
285gdb_exit
286gdb_start
287xdb_reinitialize_dir $srcdir/$subdir
288
289gdb_load ${binfile}
290send_gdb "set width 0\n"
291gdb_expect -re "$gdb_prompt $"
292test_go
293
294
295gdb_exit
296gdb_start
297xdb_reinitialize_dir $srcdir/$subdir
298
299gdb_load ${binfile}
300send_gdb "set width 0\n"
301gdb_expect -re "$gdb_prompt $"
302gdb_test "break main" ""
303gdb_test "R" ""
304gdb_test "S" "39\[ \t\]+last = num-1;"
305test_breakpoints
306test_signals
307gdb_test "sm" ""
308gdb_test "info set" ".*pagination:  State of pagination is off.*"
309gdb_test "am" ""
310gdb_test "info set" ".*pagination:  State of pagination is on.*"
311gdb_exit
312
313set GDBFLAGS $saved_gdbflags
314
315return 0
316
317
318
319
320
321
322