]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.python/py-block.exp
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-block.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-block"
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
57gdb_breakpoint [gdb_get_line_number "Block break here."]
58gdb_continue_to_breakpoint "Block break here."
59
60# Test initial innermost block.
61gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
62gdb_py_test_silent_cmd "python block = frame.block()" "Get block" 0
63gdb_test "python print block" "<gdb.Block object at $hex>" "Check block not None"
64gdb_test "python print block.function" "None" "First anonymous block"
65gdb_test "python print block.start" "${decimal}" "Check start not None"
66gdb_test "python print block.end" "${decimal}" "Check end not None"
67
68# Move up superblock(s) until we reach function block_func.
69gdb_test "python block = block.superblock" "" "Get superblock"
70gdb_test "python print block.function" "None" "Second anonymous block"
71gdb_test "python block = block.superblock" "" "Get superblock"
72gdb_test "python print block.function" "block_func"
73
74# Switch frames, then test for main block.
75gdb_test "up" ""
76gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0
77gdb_py_test_silent_cmd "python block = frame.block()" "Get block" 0
78gdb_test "python print block" "<gdb.Block object at $hex>" "Check block not None"
79gdb_test "python print block.function" "main" "main block"