[Lldb-commits] [lldb] r370237 - [test] Temporarily disable two tests on Windows
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 28 11:04:14 PDT 2019
Author: jdevlieghere
Date: Wed Aug 28 11:04:14 2019
New Revision: 370237
URL: http://llvm.org/viewvc/llvm-project?rev=370237&view=rev
Log:
[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
Modified:
lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py?rev=370237&r1=370236&r2=370237&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py Wed Aug 28 11:04:14 2019
@@ -144,6 +144,7 @@ class CommandLineCompletionTestCase(Test
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.
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py?rev=370237&r1=370236&r2=370237&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py Wed Aug 28 11:04:14 2019
@@ -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")
More information about the lldb-commits
mailing list