* python/python-internal.h: Include symtab.h.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-symbol.exp
CommitLineData
f3e9a817
PM
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 the mechanism
17# exposing values to Python.
18
19if $tracelevel then {
20 strace $tracelevel
21}
22
23set testfile "py-symbol"
24set srcfile ${testfile}.c
25set binfile ${objdir}/${subdir}/${testfile}
26if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
27 untested "Couldn't compile ${srcfile}"
28 return -1
29}
30
31# Run a command in GDB, and report a failure if a Python exception is thrown.
32# If report_pass is true, report a pass if no exception is thrown.
33proc gdb_py_test_silent_cmd {cmd name report_pass} {
34 global gdb_prompt
35
36 gdb_test_multiple $cmd $name {
37 -re "Traceback.*$gdb_prompt $" { fail $name }
38 -re "$gdb_prompt $" { if $report_pass { pass $name } }
39 }
40}
41
42# Start with a fresh gdb.
43gdb_exit
44gdb_start
45gdb_reinitialize_dir $srcdir/$subdir
46gdb_load ${binfile}
47
48# Skip all tests if Python scripting is not enabled.
49if { [skip_python_tests] } { continue }
50
51if ![runto_main] then {
52 fail "Can't run to main"
53 return 0
54}
55
56global hex decimal
57
58gdb_breakpoint [gdb_get_line_number "Block break here."]
59gdb_continue_to_breakpoint "Block break here."
60gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
61gdb_py_test_silent_cmd "python block = frame.block()" "Get block" 0
62
63# Test is_argument attribute.
64gdb_py_test_silent_cmd "python arg = gdb.lookup_symbol(\"arg\")" "Get variable a" 0
65gdb_test "python print arg\[0\].is_variable" "False" "Test arg.is_variable"
66gdb_test "python print arg\[0\].is_constant" "False" "Test arg.is_constant"
67gdb_test "python print arg\[0\].is_argument" "True" "Test arg.is_argument"
68gdb_test "python print arg\[0\].is_function" "False" "Test arg.is_function"
69
70# Test is_function attribute.
71gdb_py_test_silent_cmd "python func = frame.block().function" "Get block" 0
72gdb_test "python print func.is_variable" "False" "Test func.is_variable"
73gdb_test "python print func.is_constant" "False" "Test func.is_constant"
74gdb_test "python print func.is_argument" "False" "Test func.is_argument"
75gdb_test "python print func.is_function" "True" "Test func.is_function"
76gdb_test "python print func.name" "func" "Test func.name"
77gdb_test "python print func.print_name" "func" "Test func.print_name"
78gdb_test "python print func.linkage_name" "func" "Test func.linkage_name"
79gdb_test "python print func.addr_class == gdb.SYMBOL_LOC_BLOCK" "True" "Test func.addr_class"
80
81gdb_breakpoint [gdb_get_line_number "Break at end."]
82gdb_continue_to_breakpoint "Break at end."
83gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
84
85# Test is_variable attribute.
86gdb_py_test_silent_cmd "python a = gdb.lookup_symbol(\'a\')" "Get variable a" 0
87gdb_test "python print a\[0\].is_variable" "True" "Test a.is_variable"
88gdb_test "python print a\[0\].is_constant" "False" "Test a.is_constant"
89gdb_test "python print a\[0\].is_argument" "False" "Test a.is_argument"
90gdb_test "python print a\[0\].is_function" "False" "Test a.is_function"
91gdb_test "python print a\[0\].addr_class == gdb.SYMBOL_LOC_COMPUTED" "True" "Test a.addr_class"
92
93# Test is_constant attribute
94gdb_py_test_silent_cmd "python t = gdb.lookup_symbol(\"one\")" "Get variable a" 0
95gdb_test "python print t\[0\].is_variable" "False" "Test t.is_variable"
96gdb_test "python print t\[0\].is_constant" "True" "Test t.is_constant"
97gdb_test "python print t\[0\].is_argument" "False" "Test t.is_argument"
98gdb_test "python print t\[0\].is_function" "False" "Test t.is_function"
99gdb_test "python print t\[0\].addr_class == gdb.SYMBOL_LOC_CONST" "True" "Test t.addr_class"
100gdb_test "python print t\[0\].symtab" "gdb.python/py-symbol.c.*" "Get symtab"
101
102# C++ tests
103# Recompile binary.
104 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "debug c++"] != "" } {
105 untested "Couldn't compile ${srcfile} in c++ mode"
106 return -1
107 }
108
109# Start with a fresh gdb.
110gdb_exit
111gdb_start
112gdb_reinitialize_dir $srcdir/$subdir
113gdb_load ${binfile}
114
115if ![runto_main] then {
116 fail "Can't run to main"
117 return 0
118}
119
120gdb_breakpoint [gdb_get_line_number "Break in class."]
121gdb_continue_to_breakpoint "Break in class."
122
123gdb_py_test_silent_cmd "python cplusframe = gdb.selected_frame()" "Get Frame" 0
124gdb_py_test_silent_cmd "python cplusfunc = cplusframe.block().function" "Get block" 0
125gdb_test "python print cplusfunc.is_variable" "False" "Test func.is_variable"
126gdb_test "python print cplusfunc.is_constant" "False" "Test func.is_constant"
127gdb_test "python print cplusfunc.is_argument" "False" "Test func.is_argument"
128gdb_test "python print cplusfunc.is_function" "True" "Test func.is_function"
129gdb_test "python print cplusfunc.name" "SimpleClass::valueofi().*" "Test func.name"
130gdb_test "python print cplusfunc.print_name" "SimpleClass::valueofi().*" "Test func.print_name"
131gdb_test "python print cplusfunc.linkage_name" "_ZN11SimpleClass8valueofiEv" "Test func.linkage_name"
132gdb_test "python print cplusfunc.addr_class == gdb.SYMBOL_LOC_BLOCK" "True" "Test func.addr_class"
This page took 0.036791 seconds and 4 git commands to generate.