[Lldb-commits] [lldb] 24a4d27 - Don't run expect based tests remotely.
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Wed Dec 11 08:29:40 PST 2019
Author: Jason Molenda
Date: 2019-12-11T08:29:18-08:00
New Revision: 24a4d27acd38d7d7e3c78a8ddf1410f046891b70
URL: https://github.com/llvm/llvm-project/commit/24a4d27acd38d7d7e3c78a8ddf1410f046891b70
DIFF: https://github.com/llvm/llvm-project/commit/24a4d27acd38d7d7e3c78a8ddf1410f046891b70.diff
LOG: Don't run expect based tests remotely.
Added:
Modified:
lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py
lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py
Removed:
################################################################################
diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py b/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py
index 6fbdaee20510..1275595a7931 100644
--- a/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py
+++ b/lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py
@@ -14,7 +14,7 @@ class MultilineCompletionTest(PExpectTest):
# PExpect uses many timeouts internally and doesn't play well
# under ASAN on a loaded machine..
@skipIfAsan
- @skipIfDarwinEmbedded # test is written to explicitly "run" the binary
+ @skipIfRemote # test is written to explicitly "run" the binary
def test_basic_completion(self):
"""Test that we can complete a simple multiline expression"""
self.build()
diff --git a/lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py b/lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py
index 0ee0982a5b42..2dcc7d08e6eb 100644
--- a/lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py
+++ b/lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py
@@ -15,7 +15,7 @@ class BasicGuiCommandTest(PExpectTest):
# under ASAN on a loaded machine..
@skipIfAsan
@skipIfCursesSupportMissing
- @skipIfDarwinEmbedded # "run" command will not work correctly for remote debug
+ @skipIfRemote # "run" command will not work correctly for remote debug
def test_gui(self):
self.build()
More information about the lldb-commits
mailing list