mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 15:18:37 +08:00
gdb/testsuite: check the python module is available before using it
The gdb.python/py-inferior-leak.exp test makes use of the tracemalloc module. When running the Python tests with a GDB built against Python 2 I ran into a test failure due to the tracemalloc module not being available. This commit adds a new helper function to lib/gdb-python.exp that checks if a named module is available. Using this we can then skip the py-inferior-leak.exp test when the tracemalloc module is not available.
This commit is contained in:
@ -25,6 +25,12 @@ clean_restart
|
||||
# Skip all tests if Python scripting is not enabled.
|
||||
if { [skip_python_tests] } { continue }
|
||||
|
||||
# Skip this test if the tracemalloc module is not available.
|
||||
if { ![gdb_py_module_available "tracemalloc"] } {
|
||||
unsupported "tracemalloc module not available"
|
||||
continue
|
||||
}
|
||||
|
||||
set pyfile [gdb_remote_download host ${srcdir}/${subdir}/${testfile}.py]
|
||||
|
||||
# Source the Python script, this runs the test (which is written
|
||||
|
Reference in New Issue
Block a user