diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-28 18:04:14 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-28 18:04:14 +0000 |
commit | ff2e965ad0eff04741dfc85994a8c3524b79c216 (patch) | |
tree | 4856dc52edd96c3a033aef4df0e0b8edeeb6ff2b /lldb/packages/Python/lldbsuite/test/functionalities | |
parent | 19205abaaa3e952b97ed1c3f487e1377b7cc3302 (diff) | |
download | bcm5719-llvm-ff2e965ad0eff04741dfc85994a8c3524b79c216.tar.gz bcm5719-llvm-ff2e965ad0eff04741dfc85994a8c3524b79c216.zip |
[test] Temporarily disable two tests on Windows
Disable the two failing tests until Raphael has a chance to investigate:
Failing Tests (2):
lldb-Suite :: functionalities/completion/TestCompletion.py
lldb-Suite :: functionalities/target_command/TestTargetCommand.py
llvm-svn: 370237
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py | 1 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py b/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py index 969a7b543e0..4357eef02e6 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py @@ -144,6 +144,7 @@ class CommandLineCompletionTestCase(TestBase): self.complete_from_to('log enable lldb expr -f ' + src_dir, ['main.cpp']) + @skipIfWindows @skipIfFreeBSD # timing out on the FreeBSD buildbot def test_log_dir(self): # Complete our source directory. diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py b/lldb/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py index b08076b0cf2..c16c6b46dc8 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py @@ -341,6 +341,7 @@ class targetCommandTestCase(TestBase): self.expect("target create -s doesntexist doesntexisteither", error=True, substrs=["invalid symbol file path 'doesntexist'"]) + @skipIfWindows @no_debug_info_test def test_target_create_invalid_core_file(self): invalid_core_path = os.path.join(self.getSourceDir(), "invalid_core_file") |