]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.python/py-symbol.exp
2011-02-22 Michael Snyder <msnyder@vmware.com>
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-symbol.exp
CommitLineData
7b6bb8da 1# Copyright (C) 2010, 2011 Free Software Foundation, Inc.
f3e9a817
PM
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
19if $tracelevel then {
20 strace $tracelevel
21}
22
a2c09bd0
DE
23load_lib gdb-python.exp
24
f3e9a817
PM
25set testfile "py-symbol"
26set srcfile ${testfile}.c
27set binfile ${objdir}/${subdir}/${testfile}
28if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
29 untested "Couldn't compile ${srcfile}"
30 return -1
31}
32
f3e9a817
PM
33# Start with a fresh gdb.
34gdb_exit
35gdb_start
36gdb_reinitialize_dir $srcdir/$subdir
37gdb_load ${binfile}
38
39# Skip all tests if Python scripting is not enabled.
40if { [skip_python_tests] } { continue }
41
42if ![runto_main] then {
43 fail "Can't run to main"
44 return 0
45}
46
47global hex decimal
48
49gdb_breakpoint [gdb_get_line_number "Block break here."]
50gdb_continue_to_breakpoint "Block break here."
51gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
52gdb_py_test_silent_cmd "python block = frame.block()" "Get block" 0
53
54# Test is_argument attribute.
55gdb_py_test_silent_cmd "python arg = gdb.lookup_symbol(\"arg\")" "Get variable a" 0
56gdb_test "python print arg\[0\].is_variable" "False" "Test arg.is_variable"
57gdb_test "python print arg\[0\].is_constant" "False" "Test arg.is_constant"
58gdb_test "python print arg\[0\].is_argument" "True" "Test arg.is_argument"
59gdb_test "python print arg\[0\].is_function" "False" "Test arg.is_function"
60
61# Test is_function attribute.
62gdb_py_test_silent_cmd "python func = frame.block().function" "Get block" 0
63gdb_test "python print func.is_variable" "False" "Test func.is_variable"
64gdb_test "python print func.is_constant" "False" "Test func.is_constant"
65gdb_test "python print func.is_argument" "False" "Test func.is_argument"
66gdb_test "python print func.is_function" "True" "Test func.is_function"
67gdb_test "python print func.name" "func" "Test func.name"
68gdb_test "python print func.print_name" "func" "Test func.print_name"
69gdb_test "python print func.linkage_name" "func" "Test func.linkage_name"
70gdb_test "python print func.addr_class == gdb.SYMBOL_LOC_BLOCK" "True" "Test func.addr_class"
71
72gdb_breakpoint [gdb_get_line_number "Break at end."]
73gdb_continue_to_breakpoint "Break at end."
74gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
75
76# Test is_variable attribute.
77gdb_py_test_silent_cmd "python a = gdb.lookup_symbol(\'a\')" "Get variable a" 0
78gdb_test "python print a\[0\].is_variable" "True" "Test a.is_variable"
79gdb_test "python print a\[0\].is_constant" "False" "Test a.is_constant"
80gdb_test "python print a\[0\].is_argument" "False" "Test a.is_argument"
81gdb_test "python print a\[0\].is_function" "False" "Test a.is_function"
82gdb_test "python print a\[0\].addr_class == gdb.SYMBOL_LOC_COMPUTED" "True" "Test a.addr_class"
83
84# Test is_constant attribute
85gdb_py_test_silent_cmd "python t = gdb.lookup_symbol(\"one\")" "Get variable a" 0
86gdb_test "python print t\[0\].is_variable" "False" "Test t.is_variable"
87gdb_test "python print t\[0\].is_constant" "True" "Test t.is_constant"
88gdb_test "python print t\[0\].is_argument" "False" "Test t.is_argument"
89gdb_test "python print t\[0\].is_function" "False" "Test t.is_function"
90gdb_test "python print t\[0\].addr_class == gdb.SYMBOL_LOC_CONST" "True" "Test t.addr_class"
91gdb_test "python print t\[0\].symtab" "gdb.python/py-symbol.c.*" "Get symtab"
92
93# C++ tests
94# Recompile binary.
95 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "debug c++"] != "" } {
96 untested "Couldn't compile ${srcfile} in c++ mode"
97 return -1
98 }
99
100# Start with a fresh gdb.
101gdb_exit
102gdb_start
103gdb_reinitialize_dir $srcdir/$subdir
104gdb_load ${binfile}
105
106if ![runto_main] then {
107 fail "Can't run to main"
108 return 0
109}
110
111gdb_breakpoint [gdb_get_line_number "Break in class."]
112gdb_continue_to_breakpoint "Break in class."
113
114gdb_py_test_silent_cmd "python cplusframe = gdb.selected_frame()" "Get Frame" 0
115gdb_py_test_silent_cmd "python cplusfunc = cplusframe.block().function" "Get block" 0
116gdb_test "python print cplusfunc.is_variable" "False" "Test func.is_variable"
117gdb_test "python print cplusfunc.is_constant" "False" "Test func.is_constant"
118gdb_test "python print cplusfunc.is_argument" "False" "Test func.is_argument"
119gdb_test "python print cplusfunc.is_function" "True" "Test func.is_function"
120gdb_test "python print cplusfunc.name" "SimpleClass::valueofi().*" "Test func.name"
121gdb_test "python print cplusfunc.print_name" "SimpleClass::valueofi().*" "Test func.print_name"
cec808ec 122gdb_test "python print cplusfunc.linkage_name" "SimpleClass::valueofi().*" "Test func.linkage_name"
f3e9a817 123gdb_test "python print cplusfunc.addr_class == gdb.SYMBOL_LOC_BLOCK" "True" "Test func.addr_class"