* gdb.objc/basicclass.exp: Use standard_testfile.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-symtab.exp
CommitLineData
c5a57081 1# Copyright (C) 2010-2012 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
a2c09bd0
DE
19load_lib gdb-python.exp
20
f3e9a817
PM
21set testfile "py-symbol"
22set srcfile ${testfile}.c
23set binfile ${objdir}/${subdir}/${testfile}
24if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
25 untested "Couldn't compile ${srcfile}"
26 return -1
27}
28
f3e9a817
PM
29# Start with a fresh gdb.
30gdb_exit
31gdb_start
32gdb_reinitialize_dir $srcdir/$subdir
33gdb_load ${binfile}
34
35# Skip all tests if Python scripting is not enabled.
36if { [skip_python_tests] } { continue }
37
38if ![runto_main] then {
39 fail "Can't run to main"
40 return 0
41}
42
43global hex decimal
44
45# Setup and get the symbol table.
64e7d9dd
TT
46set line_no [gdb_get_line_number "Block break here."]
47gdb_breakpoint $line_no
f3e9a817
PM
48gdb_continue_to_breakpoint "Block break here."
49gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
50gdb_py_test_silent_cmd "python sal = frame.find_sal()" "Get block" 0
51gdb_py_test_silent_cmd "python symtab = sal.symtab" "Get block" 0
a20ee7a4
SCR
52gdb_py_test_silent_cmd "python global_block = symtab.global_block()" "Get global block" 0
53gdb_py_test_silent_cmd "python static_block = symtab.static_block()" "Get static block" 0
54gdb_py_test_silent_cmd "python global_symbols = \[\]; static_symbols = \[\]" "Set up symbol name lists" 0
55gdb_py_test_silent_cmd "python for sym in global_block: global_symbols.append(sym.name)" "Get global symbol names" 0
56gdb_py_test_silent_cmd "python for sym in static_block: static_symbols.append(sym.name)" "Get static symbol names" 0
f3e9a817
PM
57
58# Test sal.
facde0e5 59gdb_test "python print sal.symtab" ".*gdb.python/py-symbol.c.*" "Test symtab"
f3e9a817 60gdb_test "python print sal.pc" "${decimal}" "Test sal.pc"
64e7d9dd 61gdb_test "python print sal.line" "$line_no" "Test sal.line"
29703da4 62gdb_test "python print sal.is_valid()" "True" "Test sal.is_valid"
f3e9a817
PM
63
64# Test symbol table.
facde0e5 65gdb_test "python print symtab.filename" ".*gdb.python/py-symbol.c.*" "Test symtab.filename"
f3e9a817
PM
66gdb_test "python print symtab.objfile" "<gdb.Objfile object at ${hex}>" "Test symtab.objfile"
67gdb_test "python print symtab.fullname()" "testsuite/gdb.python/py-symbol.c.*" "Test symtab.fullname"
29703da4 68gdb_test "python print symtab.is_valid()" "True" "Test symtab.is_valid()"
a20ee7a4
SCR
69gdb_test "python print \"qq\" in global_symbols" "True" "Test qq in global symbols"
70gdb_test "python print \"func\" in global_symbols" "True" "Test func in global symbols"
71gdb_test "python print \"main\" in global_symbols" "True" "Test main in global symbols"
72gdb_test "python print \"int\" in static_symbols" "True" "Test int in static symbols"
73gdb_test "python print \"char\" in static_symbols" "True" "Test char in static symbols"
74gdb_test "python print \"simple_struct\" in static_symbols" "True" "Test simple_struct in static symbols"
29703da4
PM
75
76# Test is_valid when the objfile is unloaded. This must be the last
77# test as it unloads the object file in GDB.
78gdb_unload
79gdb_test "python print sal.is_valid()" "False" "Test sal.is_valid"
80gdb_test "python print symtab.is_valid()" "False" "Test symtab.is_valid()"
This page took 0.292954 seconds and 4 git commands to generate.