diff options
author | Vedant Kumar <vsk@apple.com> | 2018-08-16 18:18:16 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2018-08-16 18:18:16 +0000 |
commit | 642de8a0880f7788e52ec4cc0cb253324e2d8796 (patch) | |
tree | bc80462449110a1cffd6606acca25aeae2884f7a /lldb/packages/Python/lldbsuite/test/functionalities | |
parent | e8299ded5b6b72e68f07454ba640e176e77743da (diff) | |
download | bcm5719-llvm-642de8a0880f7788e52ec4cc0cb253324e2d8796.tar.gz bcm5719-llvm-642de8a0880f7788e52ec4cc0cb253324e2d8796.zip |
Disable two flaky pexpect-backed tests on Darwin
These tests are sporadically timing out on our bots, e.g here:
https://ci.swift.org/job/swift-PR-Linux/6841
llvm-svn: 339914
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/command_script_immediate_output/TestCommandScriptImmediateOutput.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/command_script_immediate_output/TestCommandScriptImmediateOutput.py b/lldb/packages/Python/lldbsuite/test/functionalities/command_script_immediate_output/TestCommandScriptImmediateOutput.py index c6ad75f014e..c1595cf2551 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/command_script_immediate_output/TestCommandScriptImmediateOutput.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/command_script_immediate_output/TestCommandScriptImmediateOutput.py @@ -28,6 +28,7 @@ class CommandScriptImmediateOutputTestCase (PExpectTest): oslist=["windows"], bugnumber="llvm.org/pr22274: need a pexpect replacement for windows") @expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr26139") + @skipIfDarwin def test_command_script_immediate_output_console(self): """Test that LLDB correctly allows scripted commands to set immediate output to the console.""" self.launch(timeout=10) @@ -50,6 +51,7 @@ class CommandScriptImmediateOutputTestCase (PExpectTest): oslist=["windows"], bugnumber="llvm.org/pr22274: need a pexpect replacement for windows") @expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr26139") + @skipIfDarwin def test_command_script_immediate_output_file(self): """Test that LLDB correctly allows scripted commands to set immediate output to a file.""" self.launch(timeout=10) |