[PATCH] D47018: [lit, lldbsuite] Disable tests that are failing because of pr21765 and pr24489

Stella Stamenova via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 17 09:56:47 PDT 2018


stella.stamenova created this revision.
stella.stamenova added reviewers: asmith, labath, zturner.
Herald added a subscriber: llvm-commits.

These three tests are failing on Windows and looking into the failures, they could be mapped to pr21765 and pr24489


Repository:
  rL LLVM

https://reviews.llvm.org/D47018

Files:
  packages/Python/lldbsuite/test/expression_command/call-overridden-method/TestCallOverriddenMethod.py
  packages/Python/lldbsuite/test/expression_command/pr35310/TestExprsBug35310.py
  packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py


Index: packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
===================================================================
--- packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
+++ packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
@@ -235,6 +235,7 @@
         self.complete_from_to("watchpoint set variable foo --watch w", "watchpoint set variable foo --watch write")
         self.complete_from_to('watchpoint set variable foo -w read_', 'watchpoint set variable foo -w read_write')
 
+    @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489")
     def test_symbol_name(self):
         self.build()
         self.dbg.CreateTarget(self.getBuildArtifact("a.out"))
Index: packages/Python/lldbsuite/test/expression_command/pr35310/TestExprsBug35310.py
===================================================================
--- packages/Python/lldbsuite/test/expression_command/pr35310/TestExprsBug35310.py
+++ packages/Python/lldbsuite/test/expression_command/pr35310/TestExprsBug35310.py
@@ -16,6 +16,7 @@
         self.main_source = "main.cpp"
         self.main_source_spec = lldb.SBFileSpec(self.main_source)
 
+    @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr21765")
     def test_issue35310(self):
         """Test invoking functions with non-standard linkage names.
 
Index: packages/Python/lldbsuite/test/expression_command/call-overridden-method/TestCallOverriddenMethod.py
===================================================================
--- packages/Python/lldbsuite/test/expression_command/call-overridden-method/TestCallOverriddenMethod.py
+++ packages/Python/lldbsuite/test/expression_command/call-overridden-method/TestCallOverriddenMethod.py
@@ -26,6 +26,7 @@
         # Find the line number to break for main.c.
         self.line = line_number('main.cpp', '// Set breakpoint here')
 
+    @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr21765")
     def test(self):
         """Test calls to overridden methods in derived classes."""
         self.build()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D47018.147337.patch
Type: text/x-patch
Size: 2099 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180517/fd8e7b03/attachment.bin>


More information about the llvm-commits mailing list