[Lldb-commits] [lldb] r344543 - [lldbsuite] Disable Test128BitsInteger on Windows

Stella Stamenova via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 15 11:51:28 PDT 2018


Author: stella.stamenova
Date: Mon Oct 15 11:51:28 2018
New Revision: 344543

URL: http://llvm.org/viewvc/llvm-project?rev=344543&view=rev
Log:
[lldbsuite] Disable Test128BitsInteger on Windows

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

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py?rev=344543&r1=344542&r2=344543&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py Mon Oct 15 11:51:28 2018
@@ -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")])




More information about the lldb-commits mailing list