]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.python/py-varobj.exp
f1eb35265b0b401dc2e20c2e2f766d6b15272575
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-varobj.exp
1 # Copyright (C) 2023 Free Software Foundation, Inc.
2 # This program is free software; you can redistribute it and/or modify
3 # it under the terms of the GNU General Public License as published by
4 # the Free Software Foundation; either version 3 of the License, or
5 # (at your option) any later version.
6 #
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
11 #
12 # You should have received a copy of the GNU General Public License
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14
15 # Some varobj tests involving pretty-printers
16
17 load_lib mi-support.exp
18 set MIFLAGS "-i=mi"
19
20 require allow_python_tests
21
22 standard_testfile
23
24 if {[gdb_compile "$srcdir/$subdir/$srcfile" $binfile executable {debug}] != ""} {
25 return -1
26 }
27
28 mi_clean_restart $binfile
29
30 set pyfile [gdb_remote_download host ${srcdir}/${subdir}/${testfile}.py]
31 mi_gdb_test "source ${pyfile}" \
32 ".*\\^done" \
33 "load python file"
34
35 mi_gdb_test "-enable-pretty-printing" \
36 "\\^done" \
37 "-enable-pretty-printing"
38
39 mi_gdb_test "set python print-stack full" \
40 ".*\\^done" \
41 "set python print-stack full"
42
43 mi_runto_main
44
45 mi_gdb_test "-var-create tval * tval" \
46 "\\^done.*"
47
48 mi_gdb_test "-var-list-children --all-values tval" \
49 ".*value=.*flicker.*"
50
51 mi_gdb_test "-var-create test_ptr * test_ptr" \
52 "\\^done.*"
53
54 mi_gdb_test "-var-evaluate-expression test_ptr" \
55 "\\^done,value=\"map\""
56 mi_gdb_test "-var-set-visualizer test_ptr None" \
57 "\\^done.*"
58 # mi_gdb_test "-var-update test_ptr" ".*"
59 mi_gdb_test "-var-evaluate-expression test_ptr" \
60 "\\^done,value=\"$hex.*\"" \
61 "evaluate without visualizer"