Delete Makefile.in:INSTALLED_LIBS (unused)
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-block.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-block"
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
48gdb_breakpoint [gdb_get_line_number "Block break here."]
49gdb_continue_to_breakpoint "Block break here."
50
51# Test initial innermost block.
52gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
53gdb_py_test_silent_cmd "python block = frame.block()" "Get block" 0
54gdb_test "python print block" "<gdb.Block object at $hex>" "Check block not None"
55gdb_test "python print block.function" "None" "First anonymous block"
56gdb_test "python print block.start" "${decimal}" "Check start not None"
57gdb_test "python print block.end" "${decimal}" "Check end not None"
58
59# Move up superblock(s) until we reach function block_func.
89493308 60gdb_test_no_output "python block = block.superblock" "Get superblock"
f3e9a817 61gdb_test "python print block.function" "None" "Second anonymous block"
89493308 62gdb_test_no_output "python block = block.superblock" "Get superblock 2"
f3e9a817
PM
63gdb_test "python print block.function" "block_func"
64
65# Switch frames, then test for main block.
f6978de9 66gdb_test "up" ".*"
f3e9a817
PM
67gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
68gdb_py_test_silent_cmd "python block = frame.block()" "Get block" 0
69gdb_test "python print block" "<gdb.Block object at $hex>" "Check block not None"
70gdb_test "python print block.function" "main" "main block"
This page took 0.135219 seconds and 4 git commands to generate.