Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / constvars.exp
CommitLineData
88b9d363 1# Copyright 1997-2022 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# written by Elena Zannoni (elz@apollo.hp.com)
17#
18# This file is part of the gdb testsuite
19#
20# tests for const variables
21# const pointers to vars
22# pointers to const variables
23# const pointers to const vars
24# with mixed types
25
c906108c
SS
26#
27# test running programs
28#
c906108c 29
f76495c8 30standard_testfile .c
c906108c 31
2cd045cd
JL
32# Create and source the file that provides information about the compiler
33# used to compile the test case.
4c93b1db 34if [get_compiler_info] {
ae59b1da 35 return -1
2cd045cd
JL
36}
37
053248ff 38if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable debug ] != "" } {
84c93cd5 39 untested "failed to compile"
b60f0898 40 return -1
c906108c
SS
41}
42
f76495c8 43clean_restart ${binfile}
c906108c
SS
44
45
46#
47# set it up at a breakpoint so we can play with the variable values
48#
49if ![runto_main] then {
50 perror "couldn't run to breakpoint"
51 continue
52}
53
b55a4771
MS
54get_debug_format
55
8e937346
MC
56# Many tests xfail with gcc 2 -gstabs+.
57# TODO: check out the hp side of this.
58
b55a4771 59proc local_compiler_xfail_check { } {
f81f93f7 60 if { [test_compiler_info gcc-2-*] } then {
b55a4771
MS
61 if { ![test_debug_format "HP"] \
62 && ![test_debug_format "DWARF 2"] } then {
63 setup_xfail "*-*-*"
64 }
65 }
66}
67
8e937346
MC
68# A few tests still xfail with gcc 3 -gstabs+ and gcc 4 -gstabs+.
69
70proc local_compiler_xfail_check_2 { } {
71 if { [test_compiler_info gcc-3-*] || [test_compiler_info gcc-4-*] } {
72 if { [test_debug_format "stabs" ] } {
73 setup_xfail "*-*-*"
74 }
75 }
76}
77
ad3986f0
MS
78gdb_test "break marker1" "Breakpoint $decimal at .*"
79
80gdb_test_multiple "cont" "up from marker1" {
81 -re "Break.* marker1 \\(\\) at .*:$decimal.*$gdb_prompt $" {
82 pass "continue to marker1"
83 gdb_test "up" " main .*" "up from marker1"
84 }
85 -re "Break.* marker1__.* \\(\\) at .*:$decimal.*$gdb_prompt $" {
86 fail "continue to marker1 (demangling)"
87 gdb_test "up" " main .*" "up from marker1"
c906108c 88 }
ad3986f0 89}
c906108c
SS
90
91# test function parameters
92
b55a4771 93local_compiler_xfail_check
8e937346
MC
94local_compiler_xfail_check_2
95
ad3986f0
MS
96gdb_test "ptype qux1" \
97 "type = int \\(const char, const char, const char \\*, char \\* const\\).*"
c906108c
SS
98
99# test vars and pointers
100
101proc do_constvar_tests {} {
c906108c
SS
102 gdb_test "print lave" " = 66 'B'"
103 gdb_test "ptype lave" "type = char"
104 gdb_test "print lavish" " = 10 '\\\\n'"
105 gdb_test "ptype lavish" "type = unsigned char"
106 gdb_test "print lax" " = 20"
107 gdb_test "ptype lax" "type = short.*"
108 gdb_test "print lecherous" " = 30"
4e6667ac 109 gdb_test "ptype lecherous" "type = (unsigned short|short unsigned)( int)?"
c906108c
SS
110 gdb_test "print lechery" " = 40"
111 gdb_test "ptype lechery" "type = long.*"
112 gdb_test "print lectern" " = 50"
4e6667ac 113 gdb_test "ptype lectern" "type = (unsigned long|long unsigned)( int)?"
c906108c
SS
114 gdb_test "print leeway" " = 60"
115 gdb_test "ptype leeway" "type = float"
116 gdb_test "print legacy" " = 70"
117 gdb_test "ptype legacy" "type = double"
118 gdb_test "print laconic" " = 65 'A'"
b55a4771 119 local_compiler_xfail_check
c906108c 120 gdb_test "ptype laconic" "type = const char"
30b66ecc 121 gdb_test "print laggard" " = 1 '.001'"
b55a4771 122 local_compiler_xfail_check
c906108c
SS
123 gdb_test "ptype laggard" "type = const unsigned char"
124 gdb_test "print lagoon" " = 2"
b55a4771 125 local_compiler_xfail_check
4e6667ac 126 gdb_test "ptype lagoon" "type = const short( int)?"
c906108c 127 gdb_test "print laity" " = 3"
b55a4771 128 local_compiler_xfail_check
4e6667ac 129 gdb_test "ptype laity" "type = const (unsigned short|short unsigned)( int)?"
c906108c 130 gdb_test "print lambent" " = 4"
b55a4771 131 local_compiler_xfail_check
4e6667ac 132 gdb_test "ptype lambent" "type = const long( int)?"
c906108c 133 gdb_test "print laminated" " = 5"
b55a4771 134 local_compiler_xfail_check
4e6667ac 135 gdb_test "ptype laminated" "type = const (unsigned long|long unsigned)( int)?"
c906108c 136 gdb_test "print lampoon" " = 6"
b55a4771 137 local_compiler_xfail_check
c906108c
SS
138 gdb_test "ptype lampoon" "type = const float"
139 gdb_test "print languid" " = 7"
b55a4771 140 local_compiler_xfail_check
c906108c
SS
141 gdb_test "ptype languid" "type = const double"
142 gdb_test "print *legend" " = 66 'B'"
b55a4771 143 local_compiler_xfail_check
085dd6e6 144 gdb_test "ptype legend" "type = const char \\*"
c906108c 145 gdb_test "print *legerdemain" " = 10 '\\\\n'"
b55a4771 146 local_compiler_xfail_check
085dd6e6 147 gdb_test "ptype legerdemain" "type = const unsigned char \\*"
c906108c 148 gdb_test "print *leniency" " = 20"
b55a4771 149 local_compiler_xfail_check
4e6667ac 150 gdb_test "ptype leniency" "type = const short( int)? \\*"
c906108c 151 gdb_test "print *leonine" " = 30"
b55a4771 152 local_compiler_xfail_check
4e6667ac 153 gdb_test "ptype leonine" "type = const (unsigned short|short unsigned)( int)? \\*"
c906108c 154 gdb_test "print *lesion" " = 40"
b55a4771 155 local_compiler_xfail_check
4e6667ac 156 gdb_test "ptype lesion" "type = const long( int)? \\*"
c906108c 157 gdb_test "print *lethal" " = 50"
b55a4771 158 local_compiler_xfail_check
4e6667ac 159 gdb_test "ptype lethal" "type = const (unsigned long|long unsigned)( int)? \\*"
c906108c 160 gdb_test "print *lethargic" " = 60"
b55a4771 161 local_compiler_xfail_check
085dd6e6 162 gdb_test "ptype lethargic" "type = const float \\*"
c906108c 163 gdb_test "print *levity" " = 70"
b55a4771 164 local_compiler_xfail_check
085dd6e6 165 gdb_test "ptype levity" "type = const double \\*"
c906108c 166 gdb_test "print *lewd" " = 65 'A'"
b55a4771 167 local_compiler_xfail_check
085dd6e6 168 gdb_test "ptype lewd" "type = const char \\* const"
30b66ecc 169 gdb_test "print *lexicographer" " = 1 '.001'"
b55a4771 170 local_compiler_xfail_check
085dd6e6 171 gdb_test "ptype lexicographer" "type = const unsigned char \\* const"
c906108c 172 gdb_test "print *lexicon" " = 2"
b55a4771 173 local_compiler_xfail_check
4e6667ac 174 gdb_test "ptype lexicon" "type = const short( int)? \\* const"
c906108c 175 gdb_test "print *liaison" " = 3"
b55a4771 176 local_compiler_xfail_check
4e6667ac 177 gdb_test "ptype liaison" "type = const (unsigned short|short unsigned)( int)? \\* const"
c906108c 178 gdb_test "print *libation" " = 4"
b55a4771 179 local_compiler_xfail_check
4e6667ac 180 gdb_test "ptype libation" "type = const long( int)? \\* const"
c906108c 181 gdb_test "print *libelous" " = 5"
b55a4771 182 local_compiler_xfail_check
4e6667ac 183 gdb_test "ptype libelous" "type = const (unsigned long|long unsigned)( int)? \\* const"
c906108c 184 gdb_test "print *libertine" " = 6"
b55a4771 185 local_compiler_xfail_check
085dd6e6 186 gdb_test "ptype libertine" "type = const float \\* const"
c906108c 187 gdb_test "print *libidinous" " = 7"
b55a4771 188 local_compiler_xfail_check
085dd6e6 189 gdb_test "ptype libidinous" "type = const double \\* const"
c906108c 190 gdb_test "print *languish" " = 65 'A'"
b55a4771 191 local_compiler_xfail_check
085dd6e6 192 gdb_test "ptype languish" "type = const char \\*"
30b66ecc 193 gdb_test "print *languor" " = 1 '.001'"
b55a4771 194 local_compiler_xfail_check
085dd6e6 195 gdb_test "ptype languor" "type = const unsigned char \\*"
c906108c 196 gdb_test "print *lank" " = 2"
b55a4771 197 local_compiler_xfail_check
4e6667ac 198 gdb_test "ptype lank" "type = const short( int)? \\*"
c906108c 199 gdb_test "print *lapidary" " = 3"
b55a4771 200 local_compiler_xfail_check
4e6667ac 201 gdb_test "ptype lapidary" "type = const (unsigned short|short unsigned)( int)? \\*"
c906108c 202 gdb_test "print *larceny" " = 4"
b55a4771 203 local_compiler_xfail_check
4e6667ac 204 gdb_test "ptype larceny" "type = const long( int)? \\*"
c906108c 205 gdb_test "print *largess" " = 5"
b55a4771 206 local_compiler_xfail_check
4e6667ac 207 gdb_test "ptype largess" "type = const (unsigned long|long unsigned)( int)? \\*"
c906108c 208 gdb_test "print *lascivious" " = 6"
b55a4771
MS
209 local_compiler_xfail_check
210
085dd6e6 211 gdb_test "ptype lascivious" "type = const float \\*"
c906108c 212 gdb_test "print *lassitude" " = 7"
b55a4771 213 local_compiler_xfail_check
085dd6e6 214 gdb_test "ptype lassitude" "type = const double \\*"
c906108c 215 gdb_test "print *lamprey" " = 66 'B'"
b55a4771 216 local_compiler_xfail_check
085dd6e6 217 gdb_test "ptype lamprey" "type = char \\* const"
c906108c 218 gdb_test "print *lariat" " = 10 '\\\\n'"
b55a4771 219 local_compiler_xfail_check
085dd6e6 220 gdb_test "ptype lariat" "type = unsigned char \\* const"
c906108c 221 gdb_test "print *laudanum" " = 20"
b55a4771 222 local_compiler_xfail_check
4e6667ac 223 gdb_test "ptype laudanum" "type = short( int)? \\* const"
c906108c 224 gdb_test "print *lecithin" " = 30"
b55a4771 225 local_compiler_xfail_check
4e6667ac 226 gdb_test "ptype lecithin" "type = (unsigned short|short unsigned)( int)? \\* const"
c906108c 227 gdb_test "print *leviathan" " = 40"
b55a4771 228 local_compiler_xfail_check
4e6667ac 229 gdb_test "ptype leviathan" "type = long( int)? \\* const"
c906108c 230 gdb_test "print *libretto" " = 50"
b55a4771 231 local_compiler_xfail_check
4e6667ac 232 gdb_test "ptype libretto" "type = (unsigned long|long unsigned)( int)? \\* const"
c906108c 233 gdb_test "print *lissome" " = 60"
b55a4771 234 local_compiler_xfail_check
085dd6e6 235 gdb_test "ptype lissome" "type = float \\* const"
c906108c 236 gdb_test "print *locust" " = 70"
b55a4771 237 local_compiler_xfail_check
085dd6e6 238 gdb_test "ptype locust" "type = double \\* const"
abe1a5d0 239
2f608a3a
KW
240 local_compiler_xfail_check
241 gdb_test "ptype logical" "type = const char \\\[2\\\]"
242 local_compiler_xfail_check
243 gdb_test "ptype lugged" "type = const unsigned char \\\[2\\\]"
244 local_compiler_xfail_check
245 gdb_test "ptype luck" "type = const short( int)? \\\[2\\\]"
246 local_compiler_xfail_check
247 gdb_test "ptype lunar" "type = const (unsigned short|short unsigned)( int)? \\\[2\\\]"
248 local_compiler_xfail_check
249 gdb_test "ptype lumen" "type = const long( int)? \\\[2\\\]"
250 local_compiler_xfail_check
251 gdb_test "ptype lurk" "type = const (unsigned long|long unsigned)( int)? \\\[2\\\]"
252 local_compiler_xfail_check
253 gdb_test "ptype lush" "type = const float \\\[2\\\]"
254 local_compiler_xfail_check
255 gdb_test "ptype lynx" "type = const double \\\[2\\\]"
256
abe1a5d0 257 local_compiler_xfail_check
8e937346 258 local_compiler_xfail_check_2
abe1a5d0
KB
259 gdb_test "ptype crass" "type = struct crass \{\[\r\n\]+\[\ \t\]+char \\* const ptr;\[\r\n\]+\}"
260 local_compiler_xfail_check
261 gdb_test "ptype crisp" "type = struct crisp \{\[\r\n\]+\[\ \t\]+char \\* const \\*ptr;\[\r\n\]+\}"
c906108c
SS
262}
263
264do_constvar_tests
This page took 2.395003 seconds and 4 git commands to generate.