Update copyright year in most headers.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.hp / gdb.base-hp / dollar.exp
CommitLineData
4c38e0a4
JB
1# Copyright (C) 1997, 1998, 2007, 2008, 2009, 2010
2# Free Software Foundation, Inc.
7be570e7
JM
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
7be570e7 7# (at your option) any later version.
e22f8b7c 8#
7be570e7
JM
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
7be570e7 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
7be570e7 16
7be570e7
JM
17# GDB tests for names beginning with '$'
18
19# This is aimed at HP-UX systems where a lot of system
20# routines and names begin with '$' or '$$'. GDB 4.16 was
21# unable to deal with these names as they clashed with
22# convenience variables. Wildebeest should accept such
23# names in preference to convenience variables.
24
25# This file was written by Satish Pai <pai@apollo.hp.com>
26# 1997-09-24
27
28if $tracelevel then {
29 strace $tracelevel
30 }
31
32#
33# test running programs
34#
35set prms_id 0
36set bug_id 0
37
38if { [skip_hp_tests] } { continue }
39
40set testfile "dollar"
41set srcfile ${testfile}.c
42set binfile ${objdir}/${subdir}/${testfile}
43
44if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
b60f0898
JB
45 untested dollar.exp
46 return -1
7be570e7
JM
47}
48
49#source ${binfile}.ci
50
51gdb_exit
52gdb_start
53gdb_reinitialize_dir $srcdir/$subdir
54gdb_load ${binfile}
55
56#
57# set it up at a breakpoint so we can play with the variable values
58#
59
60if ![runto_main] then {
61 perror "couldn't run to breakpoint"
62 continue
63}
64
65# Test for millicode routines
ca344dff
JL
66# hppa64 does not support dyncall
67if ![istarget "hppa64*-*-*"] {
7be570e7
JM
68send_gdb "print \$\$dyncall\n"
69gdb_expect {
70 -re "\\$\[0-9\]* = \\{<text variable, no debug info>\\} $hex <>.*$gdb_prompt $" { pass "print \$\$dyncall" }
71 -re "\\$\[0-9\]* = \\{<text variable, no debug info>\\} $hex <.*dyncall>.*$gdb_prompt $" { pass "print \$\$dyncall" }
72 -re "\\$\[0-9\]* = void" { fail "print \$\$dyncall -- interpreted as convenience var" }
73 -re "$gdb_prompt $" { fail "print \$\$dyncall" }
74 timeout { fail "(timeout) print \$\$dyncall" }
75}
76send_gdb "print \$\$dyncall_external\n"
77gdb_expect {
78 -re "\\$\[0-9\]* = \\{<text variable, no debug info>\\} $hex <>.*$gdb_prompt $" { pass "print \$\$dyncall_external" }
79 -re "\\$\[0-9\]* = \\{<text variable, no debug info>\\} $hex <.*dyncall_external>.*$gdb_prompt $" { pass "print \$\$dyncall_external" }
80 -re "\\$\[0-9\]* = void" { fail "print \$\$dyncall_external -- interpreted as convenience var" }
81 -re "$gdb_prompt $" { fail "print \$\$dyncall_external" }
82 timeout { fail "(timeout) print \$\$dyncall_external" }
83}
84
85# Set a breakpoint on a millicode routine
86send_gdb "break \$\$dyncall\n"
87gdb_expect {
88 -re "Breakpoint \[0-9\]* at $hex.*$gdb_prompt $" { pass "break \$\$dyncall" }
89 -re "Function.*not defined.*$gdb_prompt $" {fail "break \$\$dyncall -- no \$\$dyncall?" }
90 -re "Convenience variables used in line specs must have integer values\\..*$gdb_prompt $" {
91 fail "break \$\$dyncall -- treated as convenince variable"
92 }
93 -re "$gdb_prompt $" { fail "print break \$\$dyncall" }
94 timeout { fail "(timeout) print break \$\$dyncall" }
95}
96
97# Disassemble $$dyncall
98send_gdb "disassemble \$\$dyncall\n"
99gdb_expect {
100 -re "Dump of assembler code for function.*$gdb_prompt $" { pass "disas \$\$dyncall" }
101 -re "$gdb_prompt $" { fail "disas \$\$dyncall" }
102 timeout { fail "(timeout) disas \$\$dyncall" }
103}
104
105# Try to set $$dyncall like a convenience var.
106send_gdb "set \$\$dyncall = 77\n"
107gdb_expect {
108 -re "Invalid cast.*$gdb_prompt $" { pass "set \$\$dyncall = 77" }
109 -re "$gdb_prompt $" { fail "set \$\$dyncall = 77" }
110 timeout { fail "(timeout) set \$\$dyncall = 77" }
111}
112}
113
114# Try out some other $ name, not millicode
ca344dff
JL
115if [istarget "hppa64*-*-*"] {
116 #hppa64 uses __argv instead of $ARGV.
7be570e7
JM
117 send_gdb "print \__argv\n"
118 gdb_expect {
119 -re "\\$\[0-9\]* = \[0-9\]*.*$gdb_prompt $" { pass "print \__argv" }
120 -re "\\$\[0-9\]* = void.*$gdb_prompt $" {
121 fail "print \__argv (interpreted as convenience var)"
122 }
123 -re "$gdb_prompt $" { fail "print \__argv" }
124 timeout { fail "(timeout) print \__argv" }
125 }
126
127 send_gdb "ptype \__argv\n"
128 gdb_expect {
129 -re "type = <data variable, no debug info>.*$gdb_prompt $" {
130 pass "ptype \__argv"
131 }
132 -re "type = void.*$gdb_prompt $" {
133 fail "ptype \__argv (interpreted as convenience var)"
134 }
135 -re "$gdb_prompt $" { fail "ptype \__argv" }
136 timeout { fail "(timeout) ptype \__argv" }
137 }
138} else {
139send_gdb "print \$ARGV\n"
140gdb_expect {
141 -re "\\$\[0-9\]* = \[0-9\]*.*$gdb_prompt $" { pass "print \$ARGV" }
142 -re "\\$\[0-9\]* = void.*$gdb_prompt $" { fail "print \$ARGV (interpreted as convenience var)" }
143 -re "$gdb_prompt $" { fail "print \$ARGV" }
144 timeout { fail "(timeout) print \$ARGV" }
145}
146send_gdb "ptype \$ARGV\n"
147gdb_expect {
148 -re "type = <data variable, no debug info>.*$gdb_prompt $" { pass "ptype \$ARGV" }
149 -re "type = void.*$gdb_prompt $" { fail "ptype \$ARGV (interpreted as convenience var)" }
150 -re "$gdb_prompt $" { fail "ptype \$ARGV" }
151 timeout { fail "(timeout) ptype \$ARGV" }
152}
153}
This page took 0.909386 seconds and 4 git commands to generate.