* gdb.python/py-symbol.exp: Use lookup_global_symbol for tests
[external/binutils.git] / gdb / testsuite / gdb.python / py-symbol.exp
1 # Copyright (C) 2010-2012 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 the mechanism
17 # exposing values to Python.
18
19 load_lib gdb-python.exp
20
21 set testfile "py-symbol"
22 set srcfile ${testfile}.c
23 set binfile ${objdir}/${subdir}/${testfile}
24 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
25     untested "Couldn't compile ${srcfile}"
26     return -1
27 }
28
29 # Start with a fresh gdb.
30 gdb_exit
31 gdb_start
32 gdb_reinitialize_dir $srcdir/$subdir
33 gdb_load ${binfile}
34
35 # Skip all tests if Python scripting is not enabled.
36 if { [skip_python_tests] } { continue }
37
38 # Test looking up a global symbol before we runto_main as this is the
39 # point where we don't have a current frame, and we don't want to
40 # require one.
41 gdb_py_test_silent_cmd "python main_func = gdb.lookup_global_symbol(\"main\")" "Lookup main" 1
42 gdb_test "python print main_func.is_function" "True" "Test main_func.is_function"
43 gdb_test "python print gdb.lookup_global_symbol(\"junk\")" "None" "Test lookup_global_symbol(\"junk\")"
44
45 gdb_test "python print gdb.lookup_global_symbol('main').value()" "$hex .main." \
46     "print value of main"
47
48 set qq_line [gdb_get_line_number "line of qq"]
49 gdb_test "python print gdb.lookup_global_symbol('qq').line" "$qq_line" \
50     "print line number of qq"
51
52 gdb_test "python print gdb.lookup_global_symbol('qq').value()" "72" \
53     "print value of qq"
54
55 gdb_test "python print gdb.lookup_global_symbol('qq').needs_frame" \
56     "False" \
57     "print whether qq needs a frame"
58
59
60 if ![runto_main] then {
61     fail "Can't run to main"
62     return 0
63 }
64
65 global hex decimal
66
67 gdb_breakpoint [gdb_get_line_number "Block break here."]
68 gdb_continue_to_breakpoint "Block break here."
69 gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
70 gdb_py_test_silent_cmd "python block = frame.block()" "Get block" 0
71
72 # Test is_argument attribute.
73 gdb_py_test_silent_cmd "python arg = gdb.lookup_symbol(\"arg\")" "Get variable a" 0
74 gdb_test "python print arg\[0\].is_variable" "False" "Test arg.is_variable"
75 gdb_test "python print arg\[0\].is_constant" "False" "Test arg.is_constant"
76 gdb_test "python print arg\[0\].is_argument" "True" "Test arg.is_argument"
77 gdb_test "python print arg\[0\].is_function" "False" "Test arg.is_function"
78
79 # Test is_function attribute.
80 gdb_py_test_silent_cmd "python func = frame.block().function" "Get block" 0
81 gdb_test "python print func.is_variable" "False" "Test func.is_variable"
82 gdb_test "python print func.is_constant" "False" "Test func.is_constant"
83 gdb_test "python print func.is_argument" "False" "Test func.is_argument"
84 gdb_test "python print func.is_function" "True" "Test func.is_function"
85 gdb_test "python print func.name" "func" "Test func.name"
86 gdb_test "python print func.print_name" "func" "Test func.print_name"
87 gdb_test "python print func.linkage_name" "func" "Test func.linkage_name"
88 gdb_test "python print func.addr_class == gdb.SYMBOL_LOC_BLOCK" "True" "Test func.addr_class"
89
90 gdb_breakpoint [gdb_get_line_number "Break at end."]
91 gdb_continue_to_breakpoint "Break at end."
92 gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
93
94 # Test is_variable attribute.
95 gdb_py_test_silent_cmd "python a = gdb.lookup_symbol(\'a\')" "Get variable a" 0
96 gdb_test "python print a\[0\].is_variable" "True" "Test a.is_variable"
97 gdb_test "python print a\[0\].is_constant" "False" "Test a.is_constant"
98 gdb_test "python print a\[0\].is_argument" "False" "Test a.is_argument"
99 gdb_test "python print a\[0\].is_function" "False" "Test a.is_function"
100 gdb_test "python print a\[0\].addr_class == gdb.SYMBOL_LOC_COMPUTED" "True" "Test a.addr_class"
101
102 gdb_test "python print a\[0\].value()" \
103     "symbol requires a frame to compute its value.*"\
104     "try to print value of a without a frame"
105 gdb_test "python print a\[0\].value(frame)" "0" \
106     "print value of a"
107 gdb_test "python print a\[0\].needs_frame" "True" \
108     "print whether a needs a frame"
109
110 # Test is_constant attribute
111 gdb_py_test_silent_cmd "python t = gdb.lookup_symbol(\"one\")" "Get variable a" 0
112 gdb_test "python print t\[0\].is_variable" "False" "Test t.is_variable"
113 gdb_test "python print t\[0\].is_constant" "True" "Test t.is_constant"
114 gdb_test "python print t\[0\].is_argument" "False" "Test t.is_argument"
115 gdb_test "python print t\[0\].is_function" "False" "Test t.is_function"
116 gdb_test "python print t\[0\].addr_class == gdb.SYMBOL_LOC_CONST" "True" "Test t.addr_class"
117
118 # Test type attribute.
119 gdb_test "python print t\[0\].type" "enum tag" "Get type"
120
121 # Test symtab attribute.
122 gdb_test "python print t\[0\].symtab" "gdb.python/py-symbol.c.*" "Get symtab"
123
124 # C++ tests
125 # Recompile binary.
126  if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}-cxx" executable "debug c++"] != "" } {
127      untested "Couldn't compile ${srcfile} in c++ mode"
128      return -1
129  }
130
131 # Start with a fresh gdb.
132 gdb_exit
133 gdb_start
134 gdb_reinitialize_dir $srcdir/$subdir
135 gdb_load ${binfile}-cxx
136
137 if ![runto_main] then {
138     fail "Can't run to main"
139     return 0
140 }
141
142 gdb_breakpoint [gdb_get_line_number "Break in class."]
143 gdb_continue_to_breakpoint "Break in class."
144
145 gdb_py_test_silent_cmd "python cplusframe = gdb.selected_frame()" "Get Frame" 0
146 gdb_py_test_silent_cmd "python cplusfunc = cplusframe.block().function" "Get block" 0
147 gdb_test "python print cplusfunc.is_variable" "False" "Test func.is_variable"
148 gdb_test "python print cplusfunc.is_constant" "False" "Test func.is_constant"
149 gdb_test "python print cplusfunc.is_argument" "False" "Test func.is_argument"
150 gdb_test "python print cplusfunc.is_function" "True" "Test func.is_function"
151 gdb_test "python print cplusfunc.name" "SimpleClass::valueofi().*" "Test func.name"
152 gdb_test "python print cplusfunc.print_name" "SimpleClass::valueofi().*" "Test func.print_name"
153 gdb_test "python print cplusfunc.linkage_name" "SimpleClass::valueofi().*" "Test func.linkage_name"
154 gdb_test "python print cplusfunc.addr_class == gdb.SYMBOL_LOC_BLOCK" "True" "Test func.addr_class"
155
156 # Test is_valid when the objfile is unloaded.  This must be the last
157 # test as it unloads the object file in GDB.
158 # Start with a fresh gdb.
159 clean_restart ${testfile}
160 if ![runto_main] then {
161     fail "Cannot run to main."
162     return 0
163 }
164 gdb_breakpoint [gdb_get_line_number "Break at end."]
165 gdb_continue_to_breakpoint "Break at end."
166 gdb_py_test_silent_cmd "python a = gdb.lookup_symbol(\'a\')" "Get variable a" 0
167 gdb_test "python print a\[0\].is_valid()" "True" "Test symbol validity"
168 delete_breakpoints
169 gdb_unload
170 gdb_test "python print a\[0\].is_valid()" "False" "Test symbol validity"