ignore invalid DOF provider sections
[binutils-gdb.git] / gdb / testsuite / gdb.python / py-prettyprint.exp
blobbbcee563127d74a5aac89d56fdce746041c14e4c
1 # Copyright (C) 2008-2015 Free Software Foundation, Inc.
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
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 # This file is part of the GDB testsuite. It tests Python-based
17 # pretty-printing for the CLI.
19 load_lib gdb-python.exp
21 standard_testfile
23 # Start with a fresh gdb.
24 gdb_exit
25 gdb_start
27 # Skip all tests if Python scripting is not enabled.
28 if { [skip_python_tests] } { continue }
30 proc run_lang_tests {exefile lang} {
31 global srcdir subdir srcfile testfile hex
32 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${exefile}" executable "debug $lang"] != "" } {
33 untested "Couldn't compile ${srcfile} in $lang mode"
34 return -1
37 set nl "\[\r\n\]+"
39 # Start with a fresh gdb.
40 gdb_exit
41 gdb_start
42 gdb_reinitialize_dir $srcdir/$subdir
43 gdb_load ${exefile}
45 if ![runto_main ] then {
46 perror "couldn't run to breakpoint"
47 return
50 gdb_test_no_output "set print pretty on"
52 gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
53 ".*Breakpoint.*"
54 gdb_test "continue" ".*Breakpoint.*"
56 set remote_python_file [gdb_remote_download host \
57 ${srcdir}/${subdir}/${testfile}.py]
59 gdb_test_no_output "python exec (open ('${remote_python_file}').read ())" \
60 "python exec (open ('[file tail ${remote_python_file}]').read ())"
62 gdb_test "print ss" " = a=< a=<1> b=<$hex>> b=< a=<2> b=<$hex>>"
63 gdb_test "print ssa\[1\]" " = a=< a=<5> b=<$hex>> b=< a=<6> b=<$hex>>"
64 gdb_test "print ssa" " = {a=< a=<3> b=<$hex>> b=< a=<4> b=<$hex>>, a=< a=<5> b=<$hex>> b=< a=<6> b=<$hex>>}"
66 gdb_test "print arraystruct" " = {$nl *y = 7, *$nl *x = { a=<23> b=<$hex>, a=<24> b=<$hex>} *$nl *}"
68 if {$lang == "c++"} {
69 gdb_test "print cps" "= a=<8> b=<$hex>"
70 gdb_test "print cpss" " = {$nl *zss = 9, *$nl *s = a=<10> b=<$hex>$nl}"
71 gdb_test "print cpssa\[0\]" " = {$nl *zss = 11, *$nl *s = a=<12> b=<$hex>$nl}"
72 gdb_test "print cpssa\[1\]" " = {$nl *zss = 13, *$nl *s = a=<14> b=<$hex>$nl}"
73 gdb_test "print cpssa" " = {{$nl *zss = 11, *$nl *s = a=<12> b=<$hex>$nl *}, {$nl *zss = 13, *$nl *s = a=<14> b=<$hex>$nl *}}"
74 gdb_test "print sss" "= a=<15> b=< a=<8> b=<$hex>>"
75 gdb_test "print ref" "= a=<15> b=< a=<8> b=<$hex>>"
76 gdb_test "print derived" \
77 " = \{.*<Vbase1> = pp class name: Vbase1.*<Vbase2> = \{.*<VirtualTest> = pp value variable is: 1,.*members of Vbase2:.*_vptr.Vbase2 = $hex.*<Vbase3> = \{.*members of Vbase3.*members of Derived:.*value = 2.*"
78 gdb_test "print ns " "\"embedded\\\\000null\\\\000string\""
79 gdb_py_test_silent_cmd "set print elements 3" "" 1
80 gdb_test "print ns" "emb\.\.\.."
81 gdb_py_test_silent_cmd "set print elements 10" "" 1
82 gdb_test "print ns" "embedded\\\\000n\.\.\.."
83 gdb_py_test_silent_cmd "set print elements 200" "" 1
86 if { ![is_address_zero_readable] } {
87 gdb_test "print ns2" \
88 ".error reading variable: Cannot access memory at address 0x0."
91 gdb_test "print x" " = \"this is x\""
92 gdb_test "print cstring" " = \"const string\""
94 gdb_test "print estring" " = \"embedded x\\\\201\\\\202\\\\203\\\\204\""
95 if { ![is_address_zero_readable] } {
96 gdb_test "print estring3" \
97 " = <error reading variable: Cannot create a lazy string with address 0x0, and a non-zero length.>"
100 gdb_test_no_output "python pp_ls_encoding = 'UTF-8'"
101 gdb_test "print estring2" "\"embedded \", <incomplete sequence \\\\302>"
103 gdb_test_no_output "set python print-stack full"
104 gdb_test "print hint_error" "Exception: hint failed\r\nhint_error_val"
106 gdb_test "print c" " = container \"container\" with 2 elements = {$nl *.0. = 23,$nl *.1. = 72$nl}"
108 gdb_test "print nstype" " = {$nl *.0. = 7,$nl *.1. = 42$nl}"
110 gdb_test_no_output "set print pretty off"
111 gdb_test "print nstype" " = {.0. = 7, .1. = 42}" \
112 "print nstype on one line"
114 gdb_continue_to_end
117 run_lang_tests "${binfile}" "c"
118 run_lang_tests "${binfile}-cxx" "c++"
120 # Run various other tests.
122 # Start with a fresh gdb.
123 gdb_exit
124 gdb_start
125 gdb_reinitialize_dir $srcdir/$subdir
126 gdb_load ${binfile}
128 if ![runto_main ] then {
129 perror "couldn't run to breakpoint"
130 return
133 set remote_python_file [gdb_remote_download host \
134 ${srcdir}/${subdir}/${testfile}.py]
136 gdb_test_no_output "python exec (open ('${remote_python_file}').read ())" \
137 "python exec (open ('[file tail ${remote_python_file}]').read ())"
139 gdb_breakpoint [gdb_get_line_number "eval-break"]
140 gdb_continue_to_breakpoint "eval-break" ".* eval-break .*"
142 gdb_test "info locals" "eval9 = eval=<123456789>"
144 gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
145 ".*Breakpoint.*"
146 gdb_test "continue" ".*Breakpoint.*"
148 gdb_test "print ss" " = a=< a=<1> b=<$hex>> b=< a=<2> b=<$hex>>" \
149 "print ss enabled #1"
151 gdb_test_no_output "python disable_lookup_function ()"
153 gdb_test "print ss" " = {a = {a = 1, b = $hex}, b = {a = 2, b = $hex}}" \
154 "print ss disabled"
156 gdb_test_no_output "python enable_lookup_function ()"
158 gdb_test "print ss" " = a=< a=<1> b=<$hex>> b=< a=<2> b=<$hex>>" \
159 "print ss enabled #2"