]>
Commit | Line | Data |
---|---|---|
5166ed9c | 1 | # Copyright (C) 2010-2025 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 |
19 | load_lib gdb-python.exp |
20 | ||
d82e5429 | 21 | require allow_python_tests |
79749205 | 22 | |
b4a58790 TT |
23 | standard_testfile |
24 | ||
5b362f04 | 25 | if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } { |
f3e9a817 PM |
26 | return -1 |
27 | } | |
28 | ||
b0e16ca5 | 29 | if {![runto_main]} { |
f3e9a817 PM |
30 | return 0 |
31 | } | |
32 | ||
33 | global hex decimal | |
34 | gdb_breakpoint [gdb_get_line_number "Block break here."] | |
35 | gdb_continue_to_breakpoint "Block break here." | |
36 | ||
37 | # Test initial innermost block. | |
38 | gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0 | |
2cb60e74 AB |
39 | gdb_py_test_silent_cmd "python block = frame.block()" \ |
40 | "Get block, initial innermost block" 0 | |
bb2bd584 MBB |
41 | gdb_test "python print (block)" "<gdb.Block <anonymous> \{i, f, b\}>" \ |
42 | "check block not None" | |
cdc7edd7 LM |
43 | gdb_test "python print (block.function)" "None" "first anonymous block" |
44 | gdb_test "python print (block.start)" "${decimal}" "check start not None" | |
45 | gdb_test "python print (block.end)" "${decimal}" "check end not None" | |
0b27c27d | 46 | gdb_test "python print (block\['f'\].name == 'f')" "True" "check variable access" |
50ede768 | 47 | gdb_test "python print (block\['nonexistent'\])" ".*KeyError.*: 'nonexistent'.*" \ |
0b27c27d | 48 | "check nonexistent variable" |
a207f6b3 | 49 | gdb_test "python print (block\[42\])" ".*TypeError.*: Expected a string.*" \ |
0b27c27d | 50 | "check non-string key" |
f3e9a817 | 51 | |
9df2fbc4 PM |
52 | # Test global/static blocks |
53 | gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0 | |
2cb60e74 AB |
54 | gdb_py_test_silent_cmd "python block = frame.block()" \ |
55 | "Get block, frame.block" 0 | |
cdc7edd7 LM |
56 | gdb_test "python print (block.is_global)" "False" "not a global block" |
57 | gdb_test "python print (block.is_static)" "False" "not a static block" | |
2cb60e74 AB |
58 | gdb_py_test_silent_cmd "python gblock = block.global_block" \ |
59 | "Get block, global_block" 1 | |
60 | gdb_py_test_silent_cmd "python sblock = block.static_block" \ | |
61 | "Get block, static_block" 1 | |
cdc7edd7 LM |
62 | gdb_test "python print (gblock.is_global)" "True" "is the global block" |
63 | gdb_test "python print (sblock.is_static)" "True" "is the static block" | |
5166ed9c JV |
64 | gdb_test "python print (len(gblock.subblocks) > 0)" "True" \ |
65 | "global block contains at least one block" | |
66 | gdb_test "python print (sblock in gblock.subblocks)" "True" \ | |
67 | "global block contains at static block" | |
9df2fbc4 | 68 | |
f3e9a817 | 69 | # Move up superblock(s) until we reach function block_func. |
9f058c10 | 70 | gdb_test_no_output "python block = block.superblock" "get superblock" |
cdc7edd7 | 71 | gdb_test "python print (block.function)" "None" "second anonymous block" |
9f058c10 | 72 | gdb_test_no_output "python block = block.superblock" "get superblock 2" |
9325cb04 | 73 | gdb_test "python print (block.function)" "block_func" \ |
c45f3c54 | 74 | "Print superblock 2 function" |
f3e9a817 | 75 | |
bb2bd584 MBB |
76 | # Switch frames, then test block for no_locals_func. |
77 | gdb_test "continue" ".*" "continue to no_locals_func breakpoint" | |
78 | gdb_test "up" ".*" "up to no_locals_func" | |
79 | gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame 2" 0 | |
80 | gdb_py_test_silent_cmd "python block = frame.block()" "Get Frame 2's block" 0 | |
81 | gdb_test "python print (repr (block))" "<gdb.Block no_locals_func \{\}>" \ | |
82 | "Check block in no_locals_func" | |
83 | gdb_test "python print (block.function)" "no_locals_func" \ | |
84 | "no_locals_func block" | |
85 | ||
86 | # Switch frames, then test block for few_locals_func. | |
87 | gdb_test "continue" ".*" "continue to few_locals_func breakpoint" | |
88 | gdb_test "up" ".*" "up to few_locals_func" | |
89 | gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame 2" 0 | |
90 | gdb_py_test_silent_cmd "python block = frame.block()" "Get Frame 2's block" 0 | |
91 | gdb_test "python print (repr (block))" \ | |
92 | "<gdb.Block few_locals_func \{i, j, k, x, y\}>" \ | |
93 | "Check block in few_locals_func" | |
94 | gdb_test "python print (block.function)" "few_locals_func" \ | |
95 | "few_locals_func block" | |
96 | ||
97 | # Switch frames, then test block for many_locals_func. | |
98 | gdb_test "continue" ".*" "continue to many_locals_func breakpoint" | |
99 | gdb_test "up" ".*" "up to many_locals_func" | |
100 | gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame 2" 0 | |
101 | gdb_py_test_silent_cmd "python block = frame.block()" "Get Frame 2's block" 0 | |
102 | gdb_test "python print (repr (block))" \ | |
103 | "<gdb.Block many_locals_func \{i, j, k, x, y, \\.\\.\\. \\(1 more symbol\\)\}>" \ | |
104 | "Check block in many_locals_func" | |
105 | gdb_test "python print (block.function)" "many_locals_func" \ | |
106 | "many_locals_func block" | |
107 | ||
f3e9a817 | 108 | # Switch frames, then test for main block. |
f6978de9 | 109 | gdb_test "up" ".*" |
c45f3c54 JB |
110 | gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame 2" 0 |
111 | gdb_py_test_silent_cmd "python block = frame.block()" "Get Frame 2's block" 0 | |
bb2bd584 | 112 | gdb_test "python print (repr (block))" "<gdb.Block main \{.*\}>" \ |
c45f3c54 | 113 | "Check Frame 2's block not None" |
9325cb04 | 114 | gdb_test "python print (block.function)" "main" "main block" |
29703da4 | 115 | |
29703da4 PM |
116 | # Test Block is_valid. This must always be the last test in this |
117 | # testcase as it unloads the object file. | |
118 | delete_breakpoints | |
119 | gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "Get Frame" 0 | |
120 | gdb_py_test_silent_cmd "python block = frame.block()" "Get Frame block" 0 | |
121 | gdb_py_test_silent_cmd "python block_iter = iter (block)" "Get Frame block" 0 | |
9325cb04 | 122 | gdb_test "python print (block.is_valid())" "True" \ |
29703da4 | 123 | "Check block validity" |
9325cb04 | 124 | gdb_test "python print (block_iter.is_valid())" "True" \ |
2cb60e74 | 125 | "Check block_iter validity" |
aac3cc82 TT |
126 | gdb_test_no_output "python x = hash(block)" "block is hashable" |
127 | gdb_test "python print (type (x))" "<class 'int'>" "block hash is integer" | |
29703da4 | 128 | gdb_unload |
9325cb04 | 129 | gdb_test "python print (block.is_valid())" "False" \ |
2cb60e74 | 130 | "Check block validity after unload" |
9325cb04 | 131 | gdb_test "python print (block_iter.is_valid())" "False" \ |
2cb60e74 | 132 | "Check block_iter validity after unload" |
aac3cc82 TT |
133 | gdb_test "python print (hash (block) == x)" "True" \ |
134 | "block hash did not change" |