change delegation for to_read_description
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / charset.exp
CommitLineData
0dcd613f
AC
1# This testcase is part of GDB, the GNU debugger.
2
ecd75fc8 3# Copyright 2001-2014 Free Software Foundation, Inc.
dea97812
KB
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
e22f8b7c 7# the Free Software Foundation; either version 3 of the License, or
dea97812 8# (at your option) any later version.
e22f8b7c 9#
dea97812
KB
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
e22f8b7c 14#
dea97812 15# You should have received a copy of the GNU General Public License
e22f8b7c 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
dea97812
KB
17
18# Please email any bugs, comments, and/or additions to this file to:
0dcd613f 19# bug-gdb@gnu.org
dea97812
KB
20
21# Test GDB's character set support.
22
dea97812 23
f76495c8
TT
24standard_testfile .c charset-malloc.c
25
26if { [prepare_for_testing ${testfile}.exp ${testfile} [list $srcfile $srcfile2]] } {
f21565d2 27 return -1
dea97812
KB
28}
29
dea97812
KB
30# Parse the output from a `show charset' command. Return the host
31# and target charset as a two-element list.
32proc parse_show_charset_output {testname} {
33 global gdb_prompt
34
35 gdb_expect {
6c7a06a3 36 -re "The host character set is \"(.*)\"\\.\[\r\n\]+The target character set is \"(.*)\"\\.\[\r\n\]+The target wide character set is \"(.*)\"\\.\[\r\n\]+$gdb_prompt $" {
dea97812
KB
37 set host_charset $expect_out(1,string)
38 set target_charset $expect_out(2,string)
e33d66ec
EZ
39 set retlist [list $host_charset $target_charset]
40 pass $testname
41 }
42 -re "The host character set is \"(.*)\"\\.\[\r\n\]+$gdb_prompt $" {
43 set host_charset $expect_out(1,string)
44 set retlist [list $host_charset]
45 pass $testname
46 }
47 -re "The target character set is \"(.*)\"\\.\[\r\n\]+$gdb_prompt $" {
48 set target_charset $expect_out(1,string)
49 set retlist [list $target_charset]
dea97812
KB
50 pass $testname
51 }
52 -re ".*$gdb_prompt $" {
53 fail $testname
54 }
55 timeout {
56 fail "$testname (timeout)"
57 }
58 }
59
e33d66ec 60 return $retlist
dea97812
KB
61}
62
63
6c7a06a3 64# Try the various `show charset' commands.
dea97812
KB
65
66send_gdb "show charset\n"
67set show_charset [parse_show_charset_output "show charset"]
68
69send_gdb "show target-charset\n"
6c7a06a3
TT
70set show_target_charset \
71 [lindex [parse_show_charset_output "show target-charset"] 0]
dea97812 72
6c7a06a3 73if {[lsearch -exact $show_charset $show_target_charset] >= 0} {
dea97812
KB
74 pass "check `show target-charset' against `show charset'"
75} else {
76 fail "check `show target-charset' against `show charset'"
77}
78
79send_gdb "show host-charset\n"
6c7a06a3
TT
80set show_host_charset \
81 [lindex [parse_show_charset_output "show host-charset"] 0]
dea97812 82
6c7a06a3 83if {[lsearch -exact $show_charset $show_host_charset] >= 0} {
dea97812
KB
84 pass "check `show host-charset' against `show charset'"
85} else {
86 fail "check `show host-charset' against `show charset'"
87}
88
e33d66ec
EZ
89# Try a malformed `set charset'.
90gdb_test "set charset" \
91 "Requires an argument. Valid arguments are.*" \
92 "try malformed `set charset'"
93
94# Try using `set host-charset' on an invalid character set.
95gdb_test "set host-charset my_grandma_bonnie" \
96 "Undefined item: \"my_grandma_bonnie\"." \
97 "try `set host-charset' with invalid charset"
dea97812 98
e33d66ec
EZ
99# Try using `set target-charset' on an invalid character set.
100gdb_test "set target-charset my_grandma_bonnie" \
101 "Undefined item: \"my_grandma_bonnie\"." \
102 "try `set target-charset' with invalid charset"
dea97812
KB
103
104# A Tcl array mapping the names of all the character sets we've seen
105# to "1" if the character set can be used as a host character set, or
106# "0" otherwise. We can use `array names charsets' just to get a list
107# of all character sets.
108array set charsets {}
109
110proc all_charset_names {} {
111 global charsets
112 return [array names charsets]
113}
114
dea97812
KB
115proc valid_host_charset {charset} {
116 global charsets
6c7a06a3 117 return [expr {[info exists charsets($charset)] && $charsets($charset)}]
dea97812
KB
118}
119
a8df5de4
TT
120proc valid_target_charset {charset} {
121 global charsets
122 return [info exists charsets($charset)]
123}
124
e33d66ec 125send_gdb "set host-charset\n"
dea97812 126gdb_expect {
b519e2a6
DJ
127 -re "Requires an argument. Valid arguments are (.*)\\.\r\n$gdb_prompt $" {
128 set host_charset_list $expect_out(1,string)
12d79008 129 regsub -all {, } $host_charset_list {,} host_charset_list
b519e2a6
DJ
130 foreach host_charset [split $host_charset_list ","] {
131 set charsets($host_charset) 1
132 }
e33d66ec 133 pass "capture valid host charsets"
dea97812 134 }
e33d66ec
EZ
135
136 -re ".*$gdb_prompt $" {
137 fail "capture valid host charsets"
dea97812 138 }
b519e2a6 139
dea97812 140 timeout {
e33d66ec 141 fail "(timeout) capture valid host charsets"
dea97812
KB
142 }
143}
144
6c7a06a3
TT
145# If gdb was built with a phony iconv, it will only have two character
146# sets: "auto" and the default. In this situation, this set of tests
147# is pointless.
148if {[llength [array names charsets]] < 3} {
149 untested charset.exp
150 return -1
151}
dea97812 152
e33d66ec
EZ
153send_gdb "set target-charset\n"
154gdb_expect {
b519e2a6
DJ
155 -re "Requires an argument. Valid arguments are (.*)\\.\r\n$gdb_prompt $" {
156 set target_charset_list $expect_out(1,string)
12d79008 157 regsub -all {, } $target_charset_list {,} target_charset_list
b519e2a6
DJ
158 foreach target_charset [split $target_charset_list ","] {
159 if {! [info exists charsets($target_charset)]} {
160 set charsets($target_charset) 0
161 }
e33d66ec 162 }
e33d66ec 163 pass "capture valid target charsets"
e33d66ec 164 }
dea97812 165
e33d66ec
EZ
166 -re ".*$gdb_prompt $" {
167 fail "capture valid target charsets"
168 }
dea97812 169
e33d66ec
EZ
170 timeout {
171 fail "(timeout) capture valid target charsets"
172 }
173}
dea97812 174
6c7a06a3
TT
175# We don't want to test all the charset names here, since that would
176# be too many combinations. We we pick a subset.
177set charset_subset {ASCII ISO-8859-1 EBCDIC-US IBM1047}
178foreach host_charset $charset_subset {
dea97812
KB
179 if {[valid_host_charset $host_charset]} {
180
181 set testname "try `set host-charset $host_charset'"
182 send_gdb "set host-charset $host_charset\n"
183 gdb_expect {
184 -re "GDB doesn't know of any character set named.*\[\r\n]+${gdb_prompt} $" {
185 # How did it get into `charsets' then?
186 fail "$testname (didn't recognize name)"
187 }
188 -re "GDB can't use `.*' as its host character set\\.\[\r\n]+${gdb_prompt} $" {
189 # Well, then why does its `charsets' entry say it can?
190 fail $testname
191 }
192 -re "${gdb_prompt} $" {
193 pass $testname
194 }
195 timeout {
196 fail "$testname (timeout)"
197 }
198 }
199
200 # Check that the command actually had its intended effect:
201 # $host_charset should now be the host character set.
202 send_gdb "show charset\n"
203 set result [parse_show_charset_output "parse `show charset' after `set host-charset $host_charset'"]
204 if {! [string compare [lindex $result 0] $host_charset]} {
205 pass "check effect of `set host-charset $host_charset'"
206 } else {
207 fail "check effect of `set host-charset $host_charset'"
208 }
209
210 # Now try setting every possible target character set,
211 # given that host charset.
6c7a06a3 212 foreach target_charset $charset_subset {
a8df5de4
TT
213 if {![valid_target_charset $target_charset]} {
214 continue
215 }
dea97812
KB
216 set testname "try `set target-charset $target_charset'"
217 send_gdb "set target-charset $target_charset\n"
218 gdb_expect {
219 -re "GDB doesn't know of any character set named.*\[\r\n]+${gdb_prompt} $" {
220 fail "$testname (didn't recognize name)"
221 }
222 -re "GDB can't convert from the .* character set to .*\\.\[\r\n\]+${gdb_prompt} $" {
223 # This is a serious problem. GDB should be able to convert
224 # between any arbitrary pair of character sets.
225 fail "$testname (can't convert)"
226 }
227 -re "${gdb_prompt} $" {
228 pass $testname
229 }
230 timeout {
231 fail "$testname (timeout)"
232 }
233 }
234
235 # Check that the command actually had its intended effect:
236 # $target_charset should now be the target charset.
237 send_gdb "show charset\n"
238 set result [parse_show_charset_output "parse `show charset' after `set target-charset $target_charset'"]
239 if {! [string compare $result [list $host_charset $target_charset]]} {
240 pass "check effect of `set target-charset $target_charset'"
241 } else {
242 fail "check effect of `set target-charset $target_charset'"
243 }
244
245 # Test handling of characters in the host charset which
246 # can't be translated into the target charset. \xA2 is
247 # `cent' in ISO-8859-1, which has no equivalent in ASCII.
248 #
249 # On some systems, the pseudo-tty through which we
250 # communicate with GDB insists on stripping the high bit
251 # from input characters, meaning that `cent' turns into
252 # `"'. Since ISO-8859-1 and ASCII are identical in the
253 # lower 128 characters, it's tough to see how we can test
254 # this behavior on such systems, so we just xfail it.
255 #
256 # Note: the \x16 (Control-V) is an escape to allow \xA2 to
257 # get past readline.
258 if {! [string compare $host_charset iso-8859-1] && ! [string compare $target_charset ascii]} {
259
260 set testname "untranslatable character in character literal"
261 send_gdb "print '\x16\xA2'\n"
262 gdb_expect {
263 -re "There is no character corresponding to .* in the target character set .*\\.\[\r\n\]+$gdb_prompt $" {
264 pass $testname
265 }
266 -re " = 34 '\"'\[\r\n\]+$gdb_prompt $" {
267 xfail "$testname (DejaGNU's pseudo-tty strips eighth bit)"
268 }
269 -re "$gdb_prompt $" {
270 fail $testname
271 }
272 timeout {
273 fail "$testname (timeout)"
274 }
275 }
276
277 set testname "untranslatable character in string literal"
278 # If the PTTY zeros bit seven, then this turns into
279 # print """
280 # which gets us a syntax error. We don't care.
281 send_gdb "print \"\x16\xA2\"\n"
282 gdb_expect {
283 -re "There is no character corresponding to .* in the target character set .*\\.\[\r\n\]+$gdb_prompt $" {
284 pass $testname
285 }
286 -re "Unterminated string in expression.\[\r\n\]+$gdb_prompt $" {
287 xfail "$testname (DejaGNU's pseudo-tty strips eighth bit)"
288 }
289 -re "$gdb_prompt $" {
290 fail $testname
291 }
292 timeout {
293 fail "$testname (timeout)"
294 }
295 }
296
297 set testname "untranslatable characters in backslash escape"
298 send_gdb "print '\\\x16\xA2'\n"
299 gdb_expect {
300 -re "The escape sequence .* is equivalent to plain .*, which has no equivalent\[\r\n\]+in the .* character set\\.\[\r\n\]+$gdb_prompt $" {
301 pass $testname
302 }
303 -re " = 34 '\"'\[\r\n\]+$gdb_prompt $" {
304 xfail "$testname (DejaGNU's pseudo-tty strips eighth bit)"
305 }
306 -re "$gdb_prompt $" {
307 fail $testname
308 }
309 timeout {
310 fail "$testname (timeout)"
311 }
312 }
313 }
314 }
315 }
316}
317
318
319# Set the host character set to plain ASCII, and try actually printing
320# some strings in various target character sets. We need to run the
321# test program to the point at which the strings have been
322# initialized.
381bc39b 323gdb_test "break ${srcfile}:[gdb_get_line_number "all strings initialized"]" \
dea97812
KB
324 ".*Breakpoint.* at .*" \
325 "set breakpoint after all strings have been initialized"
326gdb_run_cmd
327gdb_expect {
328 -re "Breakpoint.*all strings initialized.*$gdb_prompt $" {
329 pass "run until all strings have been initialized"
330 }
331 -re "$gdb_prompt $" {
332 fail "run until all strings have been initialized"
333 }
334 timeout {
335 fail "run until all strings have been initialized (timeout)"
336 }
337}
338
339
6c7a06a3
TT
340# We only try the wide character tests on machines where the wchar_t
341# typedef in the test case has the right size.
342set wchar_size [get_sizeof wchar_t 99]
343set wchar_ok 0
344if {$wchar_size == 2} {
b8899f2b 345 lappend charset_subset UTF-16
6c7a06a3
TT
346 set wchar_ok 1
347} elseif {$wchar_size == 4} {
b8899f2b 348 lappend charset_subset UTF-32
6c7a06a3
TT
349 set wchar_ok 1
350}
351
27d3a1a2 352gdb_test_no_output "set host-charset ASCII"
6c7a06a3 353foreach target_charset $charset_subset {
a8df5de4
TT
354 if {![valid_target_charset $target_charset]} {
355 continue
356 }
357
b8899f2b 358 if {$target_charset == "UTF-32" || $target_charset == "UTF-16"} {
6c7a06a3
TT
359 set param target-wide-charset
360 set L L
361 } else {
362 set param target-charset
363 set L ""
364 }
ad3986f0 365 gdb_test_no_output "set $param $target_charset"
dea97812
KB
366
367 # Try printing the null character. There seems to be a bug in
368 # gdb_test that requires us to use gdb_expect here.
6c7a06a3 369 send_gdb "print $L'\\0'\n"
dea97812 370 gdb_expect {
30b66ecc 371 -re "\\\$${decimal} = 0 $L'\\\\000'\[\r\n\]+$gdb_prompt $" {
dea97812
KB
372 pass "print the null character in ${target_charset}"
373 }
374 -re "$gdb_prompt $" {
375 fail "print the null character in ${target_charset}"
376 }
377 timeout {
378 fail "print the null character in ${target_charset} (timeout)"
379 }
380 }
381
382 # Compute the name of the variable in the test program that holds
383 # a string in $target_charset. The variable's name is the
384 # character set's name, in lower-case, with all non-identifier
385 # characters replaced with '_', with "_string" stuck on the end.
b8899f2b
TT
386 if {$target_charset == "UTF-16"} {
387 # We still use the utf_32_string variable -- but the size is
388 # correct for UTF-16.
389 set var_name utf_32_string
6c7a06a3
TT
390 } else {
391 set var_name [string tolower "${target_charset}_string"]
392 regsub -all -- "\[^a-z0-9_\]" $var_name "_" var_name
393 }
dea97812
KB
394
395 # Compute a regexp matching the results we expect. This is static,
396 # but it's easier than writing it out.
0dcd613f 397 regsub -all "." "abfnrtv" "(\\\\&|x)" escapes
dea97812
KB
398 set uppercase "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
399 set lowercase "abcdefghijklmnopqrstuvwxyz"
400 set digits "0123456789"
6c7a06a3 401 set octal_escape "\\\\\[0-9\]+"
dea97812
KB
402
403 send_gdb "print $var_name\n"
404 # ${escapes}${uppercase}${lowercase}${digits}${octal}${octal}
405 gdb_expect {
6c7a06a3 406 -re ".* = $L\"(\\\\a|x)(\\\\b|x)(\\\\f|x)(\\\\n|x)(\\\\r|x)(\\\\t|x)(\\\\v|x)${uppercase}${lowercase}${digits}(${octal_escape}|x)+\"\[\r\n\]+$gdb_prompt $" {
dea97812
KB
407 pass "print string in $target_charset"
408 }
409 -re "$gdb_prompt $" {
410 fail "print string in $target_charset"
411 }
412 timeout {
413 fail "print string in $target_charset (timeout)"
414 }
415 }
416
417 # Try entering a character literal, and see if it comes back unchanged.
6c7a06a3
TT
418 gdb_test "print $L'A'" \
419 " = \[0-9-\]+ $L'A'" \
dea97812
KB
420 "parse character literal in ${target_charset}"
421
422 # Check that the character literal was encoded correctly.
6c7a06a3 423 gdb_test "print $L'A' == $var_name\[7\]" \
dea97812
KB
424 " = 1" \
425 "check value of parsed character literal in ${target_charset}"
426
427 # Try entering a string literal, and see if it comes back unchanged.
6c7a06a3
TT
428 gdb_test "print $L\"abcdefABCDEF012345\"" \
429 " = $L\"abcdefABCDEF012345\"" \
dea97812
KB
430 "parse string literal in ${target_charset}"
431
432 # Check that the string literal was encoded correctly.
6c7a06a3 433 gdb_test "print $L\"q\"\[0\] == $var_name\[49\]" \
dea97812
KB
434 " = 1" \
435 "check value of parsed string literal in ${target_charset}"
436
437 # Test handling of characters in the target charset which
438 # can't be translated into the host charset.
439 if {! [string compare $target_charset iso-8859-1]} {
0dcd613f 440 gdb_test "print iso_8859_1_string\[69\]" \
dea97812
KB
441 " = \[0-9-\]+ '\\\\242'" \
442 "print character with no equivalent in host character set"
443 gdb_test "print iso_8859_1_string + 70" \
444 " = ${hex} \"\\\\242.*\"" \
445 "print string with no equivalent in host character set"
446 }
447
448 # Make sure that we don't apply the ISO-8859-1 `print_literally'
449 # function to ASCII.
450 if {! [string compare $target_charset ascii]} {
0dcd613f 451 gdb_test "print iso_8859_1_string\[69\]" \
dea97812
KB
452 " = \[0-9-\]+ '\\\\242'" \
453 "print ASCII unprintable character"
454 gdb_test "print iso_8859_1_string + 70" \
455 " = ${hex} \"\\\\242.*\"" \
456 "print ASCII unprintable string"
457 }
458
459 # Try printing characters with backslash escape equivalents.
0dcd613f 460 set escapees {a b f n r t v}
dea97812
KB
461 for {set i 0} {$i < [llength $escapees]} {incr i} {
462 set escape [lindex $escapees $i]
463 send_gdb "print $var_name\[$i\]\n"
464 set have_escape 1
465 gdb_expect {
6c7a06a3 466 -re "= \[0-9-\]+ $L'\\\\${escape}'\[\r\n\]+$gdb_prompt $" {
dea97812
KB
467 pass "try printing '\\${escape}' in ${target_charset}"
468 }
469 -re "= \[0-9-\]+ 'x'\[\r\n\]+$gdb_prompt $" {
470 xfail "try printing '\\${escape}' in ${target_charset} (no such escape)"
471 set have_escape 0
472 }
473 -re "$gdb_prompt $" {
474 fail "try printing '\\${escape}' in ${target_charset}"
475 }
476 timeout {
477 fail "try printing '\\${escape}' in ${target_charset} (timeout)"
478 }
479 }
480
481 if {$have_escape} {
482
483 # Try parsing a backslash escape in a character literal.
6c7a06a3 484 gdb_test "print $L'\\${escape}' == $var_name\[$i\]" \
dea97812
KB
485 " = 1" \
486 "check value of '\\${escape}' in ${target_charset}"
487
488 # Try parsing a backslash escape in a string literal.
6c7a06a3 489 gdb_test "print $L\"\\${escape}\"\[0\] == $var_name\[$i\]" \
dea97812
KB
490 " = 1" \
491 "check value of \"\\${escape}\" in ${target_charset}"
492 }
493 }
494
495 # Try printing a character escape that doesn't exist. We should
496 # get the unescaped character, in the target character set.
6c7a06a3 497 gdb_test "print $L'\\q'" " = \[0-9-\]+ $L'q'" \
dea97812 498 "print escape that doesn't exist in $target_charset"
6c7a06a3 499 gdb_test "print $L'\\q' == $var_name\[49\]" " = 1" \
dea97812
KB
500 "check value of escape that doesn't exist in $target_charset"
501}
502
6c7a06a3 503# Reset the target charset.
27d3a1a2 504gdb_test_no_output "set target-charset UTF-8"
6c7a06a3
TT
505
506# \242 is not a valid UTF-8 character.
507gdb_test "print \"\\242\"" " = \"\\\\242\"" \
508 "non-representable target character"
509
510gdb_test "print '\\x'" "\\\\x escape without a following hex digit."
511gdb_test "print '\\u'" "\\\\u escape without a following hex digit."
512gdb_test "print '\\9'" " = \[0-9\]+ '9'"
513
30b66ecc
TT
514# An octal escape can only be 3 digits.
515gdb_test "print \"\\1011\"" " = \"A1\""
516
6c7a06a3 517# Tests for wide- or unicode- strings. L is the prefix letter to use,
b8899f2b 518# either "L" (for wide strings), "u" (for UTF-16), or "U" (for UTF-32).
6c7a06a3
TT
519# NAME is used in the test names and should be related to the prefix
520# letter in some easy-to-undestand way.
521proc test_wide_or_unicode {L name} {
522 gdb_test "print $L\"ab\" $L\"c\"" " = $L\"abc\"" \
523 "basic $name string concatenation"
524 gdb_test "print $L\"ab\" \"c\"" " = $L\"abc\"" \
525 "narrow and $name string concatenation"
526 gdb_test "print \"ab\" $L\"c\"" " = $L\"abc\"" \
527 "$name and narrow string concatenation"
30b66ecc 528 gdb_test "print $L\"\\xe\" $L\"c\"" " = $L\"\\\\016c\"" \
6c7a06a3
TT
529 "$name string concatenation with escape"
530 gdb_test "print $L\"\" \"abcdef\" \"g\"" \
531 "$L\"abcdefg\"" \
532 "concatenate three strings with empty $name string"
533
534 gdb_test "print $L'a'" "= \[0-9\]+ $L'a'" \
535 "basic $name character"
536}
537
538if {$wchar_ok} {
539 test_wide_or_unicode L wide
540}
541
542set ucs2_ok [expr {[get_sizeof char16_t 99] == 2}]
05272e11
DE
543
544if ![valid_host_charset "UTF-16"] {
545 verbose -log "Disabling UTF-16 tests."
546 set ucs2_ok 0
547}
548
6c7a06a3 549if {$ucs2_ok} {
b8899f2b 550 test_wide_or_unicode u UTF-16
6c7a06a3
TT
551}
552
553set ucs4_ok [expr {[get_sizeof char32_t 99] == 4}]
554if {$ucs4_ok} {
b8899f2b 555 test_wide_or_unicode U UTF-32
6c7a06a3
TT
556}
557
558# Test an invalid string combination.
559proc test_combination {L1 name1 L2 name2} {
560 gdb_test "print $L1\"abc\" $L2\"def\"" \
561 "Undefined string concatenation." \
562 "undefined concatenation of $name1 and $name2"
563}
564
565if {$wchar_ok && $ucs2_ok} {
b8899f2b 566 test_combination L wide u UTF-16
6c7a06a3
TT
567}
568if {$wchar_ok && $ucs4_ok} {
b8899f2b 569 test_combination L wide U UTF-32
85e306ed
TT
570 # Regression test for a typedef to a typedef.
571 gdb_test "print myvar" "= \[0-9\]+ L'A'" \
572 "typedef to wchar_t"
6c7a06a3
TT
573}
574if {$ucs2_ok && $ucs4_ok} {
b8899f2b 575 test_combination u UTF-16 U UTF-32
6c7a06a3
TT
576}
577
96c07c5b
TT
578if {$ucs2_ok} {
579 set go 1
9325cb04 580 gdb_test_multiple "python print ('hello, world!')" \
96c07c5b
TT
581 "verify python support for charset tests" {
582 -re "not supported.*$gdb_prompt $" {
583 unsupported "python support is disabled"
584 set go 0
585 }
586 -re "$gdb_prompt $" {}
587 }
588
589 if {$go} {
590 gdb_test "print u\"abcdef\"" " = u\"abcdef\"" \
591 "set up for python printing of utf-16 string"
592
9325cb04 593 gdb_test "python print (gdb.history(0).string())" "abcdef" \
96c07c5b
TT
594 "extract utf-16 string using python"
595 }
596}
597
334cc82d
TT
598# Regression test for a cleanup bug in the charset code.
599gdb_test "print 'a' == 'a' || 'b' == 'b'" \
600 ".* = 1" \
601 "EVAL_SKIP cleanup handling regression test"
602
9a22f0d0
PM
603
604proc string_display { var_name set_prefix x_size x_type} {
27d3a1a2 605 gdb_test_no_output "set ${var_name} = ${set_prefix}\"Test String\\0with zeroes\"" "Assign ${var_name} with prefix ${set_prefix}"
b012acdd 606 gdb_test "x /2${x_size}s ${var_name}" ".*\t${x_type}\"Test String\"\[\r\n\]+.*\t${x_type}\"with zeroes\"" "Display String ${var_name} with x/${x_size}s"
9a22f0d0
PM
607}
608
05272e11
DE
609if {$ucs2_ok} {
610 string_display String16 u h u
611 if {$wchar_size == 2} {
612 string_display String16 L h u
613 }
9a22f0d0 614}
05272e11 615
9a22f0d0
PM
616string_display String32 U w U
617if {$wchar_size == 4} {
618 string_display String32 L w U
619}
620
621
c50491a7
TT
622foreach name {short int long} {
623 # We're really just checking to make sure this doesn't give an
624 # error.
625 gdb_test "print ${name}_array = \"hi\"" \
626 " = {.*}" \
627 "assign string to $name array"
628}
629
630
dea97812 631gdb_exit
This page took 1.895813 seconds and 4 git commands to generate.