diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-12-20 21:01:23 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-12-20 21:01:23 -0800 |
commit | a32f8dd195866c2be95d7e71f311a805a6fed4cd (patch) | |
tree | 396a97bb51700beb4ebc66a56b64a662ce7fbc83 /lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py | |
parent | 6cc3ee17a018d916459a4f59a77c75d0b7e191a0 (diff) | |
download | bcm5719-llvm-a32f8dd195866c2be95d7e71f311a805a6fed4cd.tar.gz bcm5719-llvm-a32f8dd195866c2be95d7e71f311a805a6fed4cd.zip |
[lldb/test] Skip editline tests when LLDB_ENABLE_LIBEDIT is off.
Add a new decorator that checks if LLDB was build with editline support
and mark the relevant tests as skipped when that's not the case.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py b/lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py index b4858514637..610bf019436 100644 --- a/lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py +++ b/lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py @@ -16,6 +16,7 @@ class IOHandlerCompletionTest(PExpectTest): # PExpect uses many timeouts internally and doesn't play well # under ASAN on a loaded machine.. @skipIfAsan + @skipIfEditlineSupportMissing def test_completion(self): self.launch(dimensions=(100,500)) |