gdb/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.fortran / exprs.exp
1 # Copyright (C) 1994, 1997, 2005, 2007, 2008, 2009, 2010, 2011
2 # Free Software Foundation, Inc.
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
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8 #
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.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17 # This file was adapted from old Chill tests by Stan Shebs
18 # (shebs@cygnus.com).
19
20 if $tracelevel then {
21 strace $tracelevel
22 }
23
24 load_lib "fortran.exp"
25
26 if { [skip_fortran_tests] } { continue }
27
28 proc test_integer_literals_accepted {} {
29 global gdb_prompt
30
31 # Test various decimal values.
32
33 gdb_test "p 123" " = 123"
34 gdb_test "p -123" " = -123"
35 }
36
37 proc test_character_literals_accepted {} {
38 global gdb_prompt
39
40 # Test various character values.
41
42 gdb_test "p 'a'" " = 'a'"
43
44 # Test various substring expression.
45 gdb_test "p 'abcdefg'(2:4)" " = 'bcd'"
46 gdb_test "p 'abcdefg'(:3)" " = 'abc'"
47 gdb_test "p 'abcdefg'(5:)" " = 'efg'"
48 gdb_test "p 'abcdefg'(:)" " = 'abcdefg'"
49
50 }
51
52 proc test_integer_literals_rejected {} {
53 global gdb_prompt
54
55 test_print_reject "p _"
56 }
57
58 proc test_logical_literals_accepted {} {
59 global gdb_prompt
60
61 # Test the only possible values for a logical, TRUE and FALSE.
62
63 gdb_test "p .TRUE." " = .TRUE."
64 gdb_test "p .FALSE." " = .FALSE."
65 }
66
67 proc test_float_literals_accepted {} {
68 global gdb_prompt
69
70 # Test various floating point formats
71
72 gdb_test "p .44 .LT. .45" " = .TRUE."
73 gdb_test "p .44 .GT. .45" " = .FALSE."
74 gdb_test "p 0.44 .LT. 0.45" " = .TRUE."
75 gdb_test "p 0.44 .GT. 0.45" " = .FALSE."
76 gdb_test "p 44. .LT. 45." " = .TRUE."
77 gdb_test "p 44. .GT. 45." " = .FALSE."
78 gdb_test "p 44.0 .LT. 45.0" " = .TRUE."
79 gdb_test "p 44.0 .GT. 45.0" " = .FALSE."
80 gdb_test "p 10D20 .LT. 10D21" " = .TRUE."
81 gdb_test "p 10D20 .GT. 10D21" " = .FALSE."
82 gdb_test "p 10d20 .LT. 10d21" " = .TRUE."
83 gdb_test "p 10d20 .GT. 10d21" " = .FALSE."
84 gdb_test "p 10E20 .LT. 10E21" " = .TRUE."
85 gdb_test "p 10E20 .GT. 10E21" " = .FALSE."
86 gdb_test "p 10e20 .LT. 10e21" " = .TRUE."
87 gdb_test "p 10e20 .GT. 10e21" " = .FALSE."
88 gdb_test "p 10.D20 .LT. 10.D21" " = .TRUE."
89 gdb_test "p 10.D20 .GT. 10.D21" " = .FALSE."
90 gdb_test "p 10.d20 .LT. 10.d21" " = .TRUE."
91 gdb_test "p 10.d20 .GT. 10.d21" " = .FALSE."
92 gdb_test "p 10.E20 .LT. 10.E21" " = .TRUE."
93 gdb_test "p 10.E20 .GT. 10.E21" " = .FALSE."
94 gdb_test "p 10.e20 .LT. 10.e21" " = .TRUE."
95 gdb_test "p 10.e20 .GT. 10.e21" " = .FALSE."
96 gdb_test "p 10.0D20 .LT. 10.0D21" " = .TRUE."
97 gdb_test "p 10.0D20 .GT. 10.0D21" " = .FALSE."
98 gdb_test "p 10.0d20 .LT. 10.0d21" " = .TRUE."
99 gdb_test "p 10.0d20 .GT. 10.0d21" " = .FALSE."
100 gdb_test "p 10.0E20 .LT. 10.0E21" " = .TRUE."
101 gdb_test "p 10.0E20 .GT. 10.0E21" " = .FALSE."
102 gdb_test "p 10.0e20 .LT. 10.0e21" " = .TRUE."
103 gdb_test "p 10.0e20 .GT. 10.0e21" " = .FALSE."
104 gdb_test "p 10.0D+20 .LT. 10.0D+21" " = .TRUE."
105 gdb_test "p 10.0D+20 .GT. 10.0D+21" " = .FALSE."
106 gdb_test "p 10.0d+20 .LT. 10.0d+21" " = .TRUE."
107 gdb_test "p 10.0d+20 .GT. 10.0d+21" " = .FALSE."
108 gdb_test "p 10.0E+20 .LT. 10.0E+21" " = .TRUE."
109 gdb_test "p 10.0E+20 .GT. 10.0E+21" " = .FALSE."
110 gdb_test "p 10.0e+20 .LT. 10.0e+21" " = .TRUE."
111 gdb_test "p 10.0e+20 .GT. 10.0e+21" " = .FALSE."
112 gdb_test "p 10.0D-11 .LT. 10.0D-10" " = .TRUE."
113 gdb_test "p 10.0D-11 .GT. 10.0D-10" " = .FALSE."
114 gdb_test "p 10.0d-11 .LT. 10.0d-10" " = .TRUE."
115 gdb_test "p 10.0d-11 .GT. 10.0d-10" " = .FALSE."
116 gdb_test "p 10.0E-11 .LT. 10.0E-10" " = .TRUE."
117 gdb_test "p 10.0E-11 .GT. 10.0E-10" " = .FALSE."
118 gdb_test "p 10.0e-11 .LT. 10.0e-10" " = .TRUE."
119 gdb_test "p 10.0e-11 .GT. 10.0e-10" " = .FALSE."
120 }
121
122 proc test_convenience_variables {} {
123 global gdb_prompt
124
125 gdb_test "set \$foo = 101" " = 101\[\r\n\]*" \
126 "Set a new convenience variable"
127
128 gdb_test "print \$foo" " = 101" \
129 "Print contents of new convenience variable"
130
131 gdb_test "set \$foo = 301" " = 301\[\r\n\]*" \
132 "Set convenience variable to a new value"
133
134 gdb_test "print \$foo" " = 301" \
135 "Print new contents of convenience variable"
136
137 gdb_test "set \$_ = 11" " = 11\[\r\n\]*" \
138 "Set convenience variable \$_"
139
140 gdb_test "print \$_" " = 11" \
141 "Print contents of convenience variable \$_"
142
143 gdb_test "print \$foo + 10" " = 311" \
144 "Use convenience variable in arithmetic expression"
145
146 gdb_test "print (\$foo = 32) + 4" " = 36" \
147 "Use convenience variable assignment in arithmetic expression"
148
149 gdb_test "print \$bar" " = VOID" \
150 "Print contents of uninitialized convenience variable"
151 }
152
153 proc test_value_history {} {
154 global gdb_prompt
155
156 gdb_test "print 101" "\\\$1 = 101" \
157 "Set value-history\[1\] using \$1"
158
159 gdb_test "print 102" "\\\$2 = 102" \
160 "Set value-history\[2\] using \$2"
161
162 gdb_test "print 103" "\\\$3 = 103" \
163 "Set value-history\[3\] using \$3"
164
165 gdb_test "print \$\$" "\\\$4 = 102" \
166 "Print value-history\[MAX-1\] using inplicit index \$\$"
167
168 gdb_test "print \$\$" "\\\$5 = 103" \
169 "Print value-history\[MAX-1\] again using implicit index \$\$"
170
171 gdb_test "print \$" "\\\$6 = 103" \
172 "Print value-history\[MAX\] using implicit index \$"
173
174 gdb_test "print \$\$2" "\\\$7 = 102" \
175 "Print value-history\[MAX-2\] using explicit index \$\$2"
176
177 gdb_test "print \$0" "\\\$8 = 102" \
178 "Print value-history\[MAX\] using explicit index \$0"
179
180 gdb_test "print 108" "\\\$9 = 108" ""
181
182 gdb_test "print \$\$0" "\\\$10 = 108" \
183 "Print value-history\[MAX\] using explicit index \$\$0"
184
185 gdb_test "print \$1" "\\\$11 = 101" \
186 "Print value-history\[1\] using explicit index \$1"
187
188 gdb_test "print \$2" "\\\$12 = 102" \
189 "Print value-history\[2\] using explicit index \$2"
190
191 gdb_test "print \$3" "\\\$13 = 103" \
192 "Print value-history\[3\] using explicit index \$3"
193
194 gdb_test "print \$-3" "\\\$14 = 100" \
195 "Print (value-history\[MAX\] - 3) using implicit index \$"
196
197 gdb_test "print \$1 + 3" "\\\$15 = 104" \
198 "Use value-history element in arithmetic expression"
199 }
200
201 proc test_arithmetic_expressions {} {
202 global gdb_prompt
203
204 # Test unary minus with various operands
205
206 # gdb_test "p -(TRUE)" " = -1" "unary minus applied to bool"
207 # gdb_test "p -('a')" " = xxx" "unary minus applied to char"
208 gdb_test "p -(1)" " = -1" "unary minus applied to int"
209 gdb_test "p -(1.0)" " = -1" "unary minus applied to real"
210
211 # Test addition with various operands
212
213 gdb_test "p .TRUE. + 1" " = 2" "bool plus int"
214 gdb_test "p 1 + 1" " = 2" "int plus int"
215 gdb_test "p 1.0 + 1" " = 2" "real plus int"
216 gdb_test "p 1.0 + 2.0" " = 3" "real plus real"
217
218 # Test subtraction with various operands
219
220 gdb_test "p .TRUE. - 1" " = 0" "bool minus int"
221 gdb_test "p 3 - 1" " = 2" "int minus int"
222 gdb_test "p 3.0 - 1" " = 2" "real minus int"
223 gdb_test "p 5.0 - 2.0" " = 3" "real minus real"
224
225 # Test multiplication with various operands
226
227 gdb_test "p .TRUE. * 1" " = 1" "bool times int"
228 gdb_test "p 2 * 3" " = 6" "int times int"
229 gdb_test "p 2.0 * 3" " = 6" "real times int"
230 gdb_test "p 2.0 * 3.0" " = 6" "real times real"
231
232 # Test division with various operands
233
234 gdb_test "p .TRUE. / 1" " = 1" "bool divided by int"
235 gdb_test "p 6 / 3" " = 2" "int divided by int"
236 gdb_test "p 6.0 / 3" " = 2" "real divided by int"
237 gdb_test "p 6.0 / 3.0" " = 2" "real divided by real"
238
239 # Test exponentiation with various operands
240
241 gdb_test "p 2 ** 3" " = 8" "int powered by int"
242 gdb_test "p 2 ** 2 ** 3" " = 256" "combined exponentiation expression"
243 gdb_test "p (2 ** 2) ** 3" " = 64" "combined exponentiation expression in specified order"
244 gdb_test "p 4 ** 0.5" " = 2" "int powered by real"
245 gdb_test "p 4.0 ** 0.5" " = 2" "real powered by real"
246
247 }
248
249 # Start with a fresh gdb.
250
251 gdb_exit
252 gdb_start
253 gdb_reinitialize_dir $srcdir/$subdir
254
255 gdb_test "set print sevenbit-strings" ""
256
257 if [set_lang_fortran] then {
258 test_value_history
259 test_convenience_variables
260 test_integer_literals_accepted
261 test_integer_literals_rejected
262 test_logical_literals_accepted
263 test_character_literals_accepted
264 test_float_literals_accepted
265 test_arithmetic_expressions
266 } else {
267 warning "$test_name tests suppressed." 0
268 }
This page took 0.035513 seconds and 4 git commands to generate.