2011-03-17 Phil Muldoon <pmuldoon@redhat.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-symtab.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
49# Setup and get the symbol table.
50gdb_breakpoint [gdb_get_line_number "Block break here."]
51gdb_continue_to_breakpoint "Block break here."
52gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
53gdb_py_test_silent_cmd "python sal = frame.find_sal()" "Get block" 0
54gdb_py_test_silent_cmd "python symtab = sal.symtab" "Get block" 0
55
56# Test sal.
57gdb_test "python print sal.symtab" "gdb/testsuite/gdb.python/py-symbol.c.*" "Test symtab"
58gdb_test "python print sal.pc" "${decimal}" "Test sal.pc"
59gdb_test "python print sal.line" "42" "Test sal.line"
29703da4 60gdb_test "python print sal.is_valid()" "True" "Test sal.is_valid"
f3e9a817
PM
61
62# Test symbol table.
63gdb_test "python print symtab.filename" "testsuite/gdb.python/py-symbol.c.*" "Test symtab.filename"
64gdb_test "python print symtab.objfile" "<gdb.Objfile object at ${hex}>" "Test symtab.objfile"
65gdb_test "python print symtab.fullname()" "testsuite/gdb.python/py-symbol.c.*" "Test symtab.fullname"
29703da4
PM
66gdb_test "python print symtab.is_valid()" "True" "Test symtab.is_valid()"
67
68# Test is_valid when the objfile is unloaded. This must be the last
69# test as it unloads the object file in GDB.
70gdb_unload
71gdb_test "python print sal.is_valid()" "False" "Test sal.is_valid"
72gdb_test "python print symtab.is_valid()" "False" "Test symtab.is_valid()"
This page took 0.174847 seconds and 4 git commands to generate.