OSDN Git Service

PR python/12227
[pf3gnuchains/pf3gnuchains4x.git] / gdb / testsuite / gdb.python / py-pp-maint.exp
1 # Copyright (C) 2010 Free Software Foundation, Inc.
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
19 if $tracelevel then {
20     strace $tracelevel
21 }
22
23 if [is_remote host] {
24     untested "py-pp-maint.exp can only be run locally"
25     return -1
26 }
27
28 load_lib gdb-python.exp
29
30 set testfile "py-pp-maint"
31 set srcfile ${testfile}.c
32 set binfile ${objdir}/${subdir}/${testfile}
33
34 # Start with a fresh gdb.
35 gdb_exit
36 gdb_start
37
38 # Skip all tests if Python scripting is not enabled.
39 if { [skip_python_tests] } { continue }
40
41 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "debug"] != "" } {
42     untested "Couldn't compile ${srcfile}"
43     return -1
44 }
45
46 gdb_reinitialize_dir $srcdir/$subdir
47 gdb_load ${binfile}
48
49 if ![runto_main ] then {
50     fail "Can't run to main"
51     return -1
52 }
53
54 gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
55     ".*Breakpoint.*"
56 gdb_test "continue" ".*Breakpoint.*"
57
58 set python_file ${srcdir}/${subdir}/${testfile}.py
59
60 gdb_test_no_output "python execfile ('${python_file}')" ""
61
62 gdb_test "info pretty-printer" \
63     {.*function_lookup_test.*pp-test.*struct ss.*}
64
65 gdb_test "info pretty-printer global .*function" \
66     {.*function_lookup_test.*}
67
68 gdb_test "info pretty-printer .* pp-test" \
69     {.*pp-test.*struct ss.*}
70
71 gdb_test "print flt" " = x=<42> y=<43>" \
72     "print flt enabled #1"
73
74 gdb_test "print ss" " = a=<a=<1> b=<$hex>> b=<a=<2> b=<$hex>>" \
75     "print ss enabled #1"
76
77 gdb_test "disable pretty-printer" \
78     "5 printers disabled.*0 of 5 printers enabled"
79
80 gdb_test "enable pretty-printer" \
81     "5 printers enabled.*5 of 5 printers enabled"
82
83 gdb_test "disable pretty-printer global" \
84     "5 printers disabled.*0 of 5 printers enabled"
85
86 gdb_test "enable pretty-printer" \
87     "5 printers enabled.*5 of 5 printers enabled"
88
89 gdb_test "disable pretty-printer global lookup_function_lookup_test" \
90     "1 printer disabled.*4 of 5 printers enabled"
91
92 gdb_test "disable pretty-printer global pp-test;.*" \
93     "4 printers disabled.*0 of 5 printers enabled"
94
95 gdb_test "info pretty-printer global .*function" \
96     {.*function_lookup_test \[disabled\].*}
97
98 gdb_test "info pretty-printer .* pp-test" \
99     {.*pp-test.*struct ss \[disabled\].*}
100
101 gdb_test "print flt" " = {x = 42, y = 43}" \
102     "print flt disabled"
103
104 gdb_test "print ss" " = {a = {a = 1, b = $hex}, b = {a = 2, b = $hex}}" \
105     "print ss disabled"
106
107 gdb_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.
113 gdb_test "enable pretty-printer global pp-test" \
114     "0 printers enabled.*1 of 5 printers enabled"
115
116 gdb_test "enable pretty-printer global pp-test;.*ss.*" \
117     "2 printers enabled.*3 of 5 printers enabled"
118
119 gdb_test "enable pretty-printer global pp-test;.*s.*" \
120     "2 printers enabled.*5 of 5 printers enabled"
121
122 gdb_test "info pretty-printer" \
123     {.*function_lookup_test.*pp-test.*struct ss.*}
124
125 gdb_test "print flt" " = x=<42> y=<43>" \
126     "print flt re-enabled"
127
128 gdb_test "print ss" " = a=<a=<1> b=<$hex>> b=<a=<2> b=<$hex>>" \
129     "print ss re-enabled"