revert previous patch
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / assign.exp
CommitLineData
4c38e0a4 1# Copyright 1998, 1999, 2007, 2008, 2009, 2010 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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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#
c906108c 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/>.
c906108c 15
c906108c
SS
16# This file was written by Elena Zannoni (ezannoni@cygnus.com)
17
18# This file is part of the gdb testsuite
19#
20# tests for all the assignemnt operators
21# with mixed types and with int type variables
22#
23
24if $tracelevel then {
25 strace $tracelevel
26 }
27
28#
29# test running programs
30#
c906108c
SS
31
32set testfile "all-types"
33set srcfile ${testfile}.c
34set binfile ${objdir}/${subdir}/${testfile}
35
fc91c6c2 36if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
b60f0898
JB
37 untested assign.exp
38 return -1
c906108c
SS
39 }
40
41
42
43gdb_exit
44gdb_start
45gdb_reinitialize_dir $srcdir/$subdir
46gdb_load ${binfile}
47
48
49#
50# set it up at a breakpoint so we can play with the variable values
51#
52
53if ![runto_main] then {
54 perror "couldn't run to breakpoint"
55 continue
56}
57
58gdb_test "next" "return 0;" "continuing after dummy()"
59
6acb16a2
MS
60gdb_test_multiple "print v_int=57" "v_int=57" {
61 -re " = 57.*$gdb_prompt $" {
62 gdb_test "print v_int" " = 57" "v_int=57"
63 }
64}
65
66gdb_test_no_output "set variable v_int = 6" "set v_int to 6"
67
68gdb_test_multiple "print v_int+=57" "v_int+=57" {
69 -re " = 63.*$gdb_prompt $" {
70 gdb_test "print v_int" " = 63" "v_int+=57"
71 }
72}
73
74gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (2)"
75
76gdb_test_multiple "print v_int-=57" "v_int-=57" {
77 -re " = -51.*$gdb_prompt $" {
78 gdb_test "print v_int" " = -51" "v_int-=57"
79 }
80}
81
82gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (3)"
83
84gdb_test_multiple "print v_int*=5" "v_int*=5" {
85 -re " = 30.*$gdb_prompt $" {
86 gdb_test "print v_int" " = 30" "v_int*=5"
87 }
88}
89
90gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (4)"
91
92gdb_test_multiple "print v_int/=4" "v_int/=4" {
93 -re " = 1.*$gdb_prompt $" {
94 gdb_test "print v_int" " = 1" "v_int/=4"
95 }
96}
97
98gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (5)"
99
100gdb_test_multiple "print v_int%=4" "v_int%=4" {
101 -re " = 2.*$gdb_prompt $" {
102 gdb_test "print v_int" " = 2" "v_int%=4"
103 }
104}
105
106gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (6)"
107
108gdb_test_multiple "print v_int+=v_char" "v_int+=char" {
109 -re " = 71.*$gdb_prompt $" {
110 gdb_test "print v_int" " = 71" "v_int+=char"
111 }
112}
113
114gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (7)"
115
116gdb_test_multiple "print v_int+=v_signed_char" "v_int+=signed_char" {
117 -re " = 72.*$gdb_prompt $" {
118 gdb_test "print v_int" " = 72" "v_int+=signed_char"
119 }
120}
121
122gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (8)"
123
124gdb_test_multiple "print v_int+=v_unsigned_char" "v_int+=unsigned_char" {
125 -re " = 73.*$gdb_prompt $" {
126 gdb_test "print v_int" " = 73" "v_int+=unsigned_char"
127 }
128}
129
130gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (9)"
131
132gdb_test_multiple "print v_int+=v_short" "v_int+=short" {
133 -re " = 9.*$gdb_prompt $" {
134 gdb_test "print v_int" " = 9" "v_int+=short"
135 }
136}
137
138gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (10)"
139
140gdb_test_multiple "print v_int+=v_signed_short" "v_int+=signed_short" {
141 -re " = 10.*$gdb_prompt $" {
142 gdb_test "print v_int" " = 10" "v_int+=signed_short"
143 }
144}
145
146gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (11)"
147
148gdb_test_multiple "print v_int+=v_unsigned_short" "v_int=+unsigned_short" {
149 -re " = 11.*$gdb_prompt $" {
150 gdb_test "print v_int" " = 11" "v_int=+unsigned_short"
151 }
152}
153
154gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (12)"
155
156gdb_test_multiple "print v_int+=v_signed_int" "v_int+=signed_int" {
157 -re " = 13.*$gdb_prompt $" {
158 gdb_test "print v_int" " = 13" "v_int+=signed_int"
159 }
160}
161
162gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (13)"
163
164gdb_test_multiple "print v_int+=v_unsigned_int" "v_int+=unsigned_int" {
165 -re " = 14.*$gdb_prompt $" {
166 gdb_test "print v_int" " = 14" "v_int+=unsigned_int"
167 }
168}
c906108c 169
6acb16a2 170gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (14)"
c906108c 171
6acb16a2
MS
172gdb_test_multiple "print v_int+=v_long" "v_int+=long" {
173 -re " = 15.*$gdb_prompt $" {
174 gdb_test "print v_int" " = 15" "v_int+=long"
175 }
176}
177
178gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (15)"
179
180gdb_test_multiple "print v_int+=v_signed_long" "v_int+=signed_long" {
181 -re " = 16.*$gdb_prompt $" {
182 gdb_test "print v_int" " = 16" "v_int+=signed_long"
183 }
184}
185
186gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (16)"
187
188gdb_test_multiple "print v_int+=v_unsigned_long" "v_int+=unsigned_long" {
189 -re " = 17.*$gdb_prompt $" {
190 gdb_test "print v_int" " = 17" "v_int+=unsigned_long"
191 }
192}
193
194gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (17)"
195
196gdb_test_multiple "print v_int+=v_float" "v_int+=v_float" {
197 -re " = 106.*$gdb_prompt $" {
198 gdb_test "print v_int" " = 106" "v_int+=v_float"
199 }
200}
201
202gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (18)"
203
204gdb_test_multiple "print v_int+=v_double" "v_int+=double" {
205 -re " = 206.*$gdb_prompt $" {
206 gdb_test "print v_int" " = 206" "v_int+=double"
207 }
208}
This page took 1.007621 seconds and 4 git commands to generate.