Skip to content

Commit 263eb36

Browse files
committed
Skip PExpect tests under ASAN, I can't get them to work reliably.
llvm-svn: 374905
1 parent 0cdf478 commit 263eb36

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

lldb/packages/Python/lldbsuite/test/commands/expression/multiline-completion/TestMultilineCompletion.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ class MultilineCompletionTest(PExpectTest):
1111

1212
mydir = TestBase.compute_mydir(__file__)
1313

14+
# PExpect uses many timeouts internally and doesn't play well
15+
# under ASAN on a loaded machine..
16+
@skipIfAsan
1417
def test_basic_completion(self):
1518
"""Test that we can complete a simple multiline expression"""
1619
self.build()

lldb/packages/Python/lldbsuite/test/commands/gui/basic/TestGuiBasic.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ class BasicGuiCommandTest(PExpectTest):
1111

1212
mydir = TestBase.compute_mydir(__file__)
1313

14+
# PExpect uses many timeouts internally and doesn't play well
15+
# under ASAN on a loaded machine..
16+
@skipIfAsan
1417
@skipIfCursesSupportMissing
1518
def test_gui(self):
1619
self.build()

0 commit comments

Comments
 (0)