diff options
author | Tom Tromey <tom@tromey.com> | 2023-01-08 11:46:05 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-01-13 13:18:58 -0700 |
commit | d82e5429b532f3cf0a0453800b0347368834f8bc (patch) | |
tree | e3e11ec7928cac52b00d878d139104759700c332 /gdb/testsuite/gdb.base/non-lazy-array-index.exp | |
parent | c241bf50ca04196a1bb88e71a43b95dc5e61ca35 (diff) | |
download | binutils-d82e5429b532f3cf0a0453800b0347368834f8bc.zip binutils-d82e5429b532f3cf0a0453800b0347368834f8bc.tar.gz binutils-d82e5429b532f3cf0a0453800b0347368834f8bc.tar.bz2 |
Rename to allow_python_tests
This changes skip_python_tests to invert the sense, and renames it to
allow_python_tests.
Diffstat (limited to 'gdb/testsuite/gdb.base/non-lazy-array-index.exp')
-rw-r--r-- | gdb/testsuite/gdb.base/non-lazy-array-index.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.base/non-lazy-array-index.exp b/gdb/testsuite/gdb.base/non-lazy-array-index.exp index 75c2252..f88cf6f 100644 --- a/gdb/testsuite/gdb.base/non-lazy-array-index.exp +++ b/gdb/testsuite/gdb.base/non-lazy-array-index.exp @@ -80,7 +80,7 @@ gdb_test_multiple "p \$.array\[1\]" "" { gdb_test "set debug target 0" ".*" -if { ! [skip_python_tests] } { +if { [allow_python_tests] } { gdb_test_no_output "python val = gdb.parse_and_eval('global_foo')" gdb_test "python print('val = %s' % val)" "val = \\{f = 1, array = \\{1, 2, 3, 4, 5\\}\\}" gdb_test "python print('val.is_lazy = %s' % val.is_lazy)" "val\\.is_lazy = False" |