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.arch | |
parent | c241bf50ca04196a1bb88e71a43b95dc5e61ca35 (diff) | |
download | gdb-d82e5429b532f3cf0a0453800b0347368834f8bc.zip gdb-d82e5429b532f3cf0a0453800b0347368834f8bc.tar.gz gdb-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.arch')
-rw-r--r-- | gdb/testsuite/gdb.arch/i386-mpx.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.arch/i386-mpx.exp b/gdb/testsuite/gdb.arch/i386-mpx.exp index d211f7b..96cd8fe 100644 --- a/gdb/testsuite/gdb.arch/i386-mpx.exp +++ b/gdb/testsuite/gdb.arch/i386-mpx.exp @@ -130,7 +130,7 @@ gdb_test "print \$bndstatus.status.error" "= 2" "bndstatus error is 2\ after a failure on allocating an entry" # Going to test the python extension for lenght. -if { [skip_python_tests] } { continue } +if { ![allow_python_tests] } { continue } # Verify if size is right set test_string ".*\\\: size 0x11.*" gdb_test "print /x \$bnd0 = {0x10, 0x20}" "$test_string" "verify size for bnd0" |