]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.python/py-pp-maint.exp
Copyright year update in most files of the GDB Project.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-pp-maint.exp
CommitLineData
c5a57081 1# Copyright (C) 2010-2012 Free Software Foundation, Inc.
7b51bc51
DE
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
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
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.
12#
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/>.
15
16# This file is part of the GDB testsuite. It tests Python-based
17# pretty-printing for the CLI.
18
19if $tracelevel then {
20 strace $tracelevel
21}
22
23if [is_remote host] {
24 untested "py-pp-maint.exp can only be run locally"
25 return -1
26}
27
28load_lib gdb-python.exp
29
30set testfile "py-pp-maint"
31set srcfile ${testfile}.c
32set binfile ${objdir}/${subdir}/${testfile}
33
34# Start with a fresh gdb.
35gdb_exit
36gdb_start
37
38# Skip all tests if Python scripting is not enabled.
39if { [skip_python_tests] } { continue }
40
41if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "debug"] != "" } {
42 untested "Couldn't compile ${srcfile}"
43 return -1
44}
45
46gdb_reinitialize_dir $srcdir/$subdir
47gdb_load ${binfile}
48
49if ![runto_main ] then {
50 fail "Can't run to main"
51 return -1
52}
53
7b51bc51
DE
54gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
55 ".*Breakpoint.*"
56gdb_test "continue" ".*Breakpoint.*"
57
58set python_file ${srcdir}/${subdir}/${testfile}.py
59
60gdb_test_no_output "python execfile ('${python_file}')" ""
61
62gdb_test "info pretty-printer" \
63 {.*function_lookup_test.*pp-test.*struct ss.*}
64
65gdb_test "info pretty-printer global .*function" \
66 {.*function_lookup_test.*}
67
68gdb_test "info pretty-printer .* pp-test" \
69 {.*pp-test.*struct ss.*}
70
71gdb_test "print flt" " = x=<42> y=<43>" \
72 "print flt enabled #1"
73
74gdb_test "print ss" " = a=<a=<1> b=<$hex>> b=<a=<2> b=<$hex>>" \
75 "print ss enabled #1"
76
77gdb_test "disable pretty-printer" \
78 "5 printers disabled.*0 of 5 printers enabled"
79
4e04c971
DE
80gdb_test "enable pretty-printer" \
81 "5 printers enabled.*5 of 5 printers enabled"
82
7b51bc51 83gdb_test "disable pretty-printer global" \
4e04c971
DE
84 "5 printers disabled.*0 of 5 printers enabled"
85
86gdb_test "enable pretty-printer" \
87 "5 printers enabled.*5 of 5 printers enabled"
7b51bc51
DE
88
89gdb_test "disable pretty-printer global lookup_function_lookup_test" \
4e04c971 90 "1 printer disabled.*4 of 5 printers enabled"
7b51bc51 91
4e04c971
DE
92gdb_test "disable pretty-printer global pp-test;.*" \
93 "4 printers disabled.*0 of 5 printers enabled"
7b51bc51
DE
94
95gdb_test "info pretty-printer global .*function" \
96 {.*function_lookup_test \[disabled\].*}
97
98gdb_test "info pretty-printer .* pp-test" \
99 {.*pp-test.*struct ss \[disabled\].*}
100
101gdb_test "print flt" " = {x = 42, y = 43}" \
102 "print flt disabled"
103
104gdb_test "print ss" " = {a = {a = 1, b = $hex}, b = {a = 2, b = $hex}}" \
105 "print ss disabled"
106
107gdb_test "enable pretty-printer global lookup_function_lookup_test" \
108 "1 printer enabled.*1 of 5 printers enabled"
109
110# This doesn't enable any printers because each subprinter in the collection
111# is still individually disabled. But this is still needed, to enable the
112# collection itself.
113gdb_test "enable pretty-printer global pp-test" \
114 "0 printers enabled.*1 of 5 printers enabled"
115
4e04c971 116gdb_test "enable pretty-printer global pp-test;.*ss.*" \
7b51bc51
DE
117 "2 printers enabled.*3 of 5 printers enabled"
118
4e04c971 119gdb_test "enable pretty-printer global pp-test;.*s.*" \
7b51bc51
DE
120 "2 printers enabled.*5 of 5 printers enabled"
121
122gdb_test "info pretty-printer" \
123 {.*function_lookup_test.*pp-test.*struct ss.*}
124
125gdb_test "print flt" " = x=<42> y=<43>" \
126 "print flt re-enabled"
127
128gdb_test "print ss" " = a=<a=<1> b=<$hex>> b=<a=<2> b=<$hex>>" \
129 "print ss re-enabled"