[lldbsuite] Disable Test128BitsInteger on Windows
authorStella Stamenova <stilis@microsoft.com>
Mon, 15 Oct 2018 18:51:28 +0000 (18:51 +0000)
committerStella Stamenova <stilis@microsoft.com>
Mon, 15 Oct 2018 18:51:28 +0000 (18:51 +0000)
Summary: This test is failing on Windows because lldb does not support JIT on Windows.

Reviewers: davide, asmith

Reviewed By: davide

Subscribers: lldb-commits

Differential Revision: https://reviews.llvm.org/D53226

llvm-svn: 344543

lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py

index 0342465..be1d875 100644 (file)
@@ -1,4 +1,7 @@
 from lldbsuite.test import lldbinline
 from lldbsuite.test import decorators
 
-lldbinline.MakeInlineTest(__file__, globals(), None)
+lldbinline.MakeInlineTest(
+    __file__, globals(), [
+        decorators.expectedFailureAll(
+            oslist=["windows"], bugnumber="llvm.org/pr37656")])