diff options
| author | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2024-07-02 02:29:11 +0500 |
|---|---|---|
| committer | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2024-07-02 02:29:16 +0500 |
| commit | 95038a58268f8aeb7e35ce07fd82bbb3f48e4673 (patch) | |
| tree | d4fb0644a0cb41b836c99fe0e0532b8d18043fd2 /lldb/test/API/functionalities/plugins/python_os_plugin | |
| parent | f5dd8450940b003afb446846840cd19b067d327d (diff) | |
[LLDB] Import decorators in TestPythonOSPlugin.py
This fixes a regression caused by my commit where I added test
as skipped using a decorator but forgot to add import decorator
in TestPythonOSPlugin.py
Diffstat (limited to 'lldb/test/API/functionalities/plugins/python_os_plugin')
| -rw-r--r-- | lldb/test/API/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/API/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py b/lldb/test/API/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py index 2043543dc04a..479c94c23154 100644 --- a/lldb/test/API/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py +++ b/lldb/test/API/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py @@ -5,6 +5,7 @@ Test that the Python operating system plugin works correctly import os import lldb +from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * import lldbsuite.test.lldbutil as lldbutil |
