[Lldb-commits] [PATCH] D17972: [TestRegisterVariables] Adjust compiler range in expected failure decorator.

Siva Chandra via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 8 16:07:01 PST 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL262970: [TestRegisterVariables] Adjust compiler range in expected failure decorator. (authored by sivachandra).

Changed prior to commit:
  http://reviews.llvm.org/D17972?vs=50079&id=50086#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D17972

Files:
  lldb/trunk/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py

Index: lldb/trunk/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py
===================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py
@@ -15,8 +15,8 @@
     mydir = TestBase.compute_mydir(__file__)
 
     @expectedFailureAll(oslist=['macosx'], compiler='clang', compiler_version=['<', '7.0.0'], debug_info="dsym")
-    @expectedFailureAll(compiler="clang", compiler_version=['<', '3.5'])
-    @expectedFailureAll(compiler="gcc", compiler_version=['=', '4.8.2'])
+    @expectedFailureAll(compiler="clang", compiler_version=['>', '3.5'])
+    @expectedFailureAll(compiler="gcc", compiler_version=['>=', '4.8.2'])
     def test_and_run_command(self):
         """Test expressions on register values."""
         self.build()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D17972.50086.patch
Type: text/x-patch
Size: 950 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160309/252f372f/attachment.bin>


More information about the lldb-commits mailing list