[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 15:27:37 PST 2016


sivachandra created this revision.
sivachandra added a subscriber: lldb-commits.

http://reviews.llvm.org/D17972

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

Index: packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py
===================================================================
--- packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py
+++ 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.50079.patch
Type: text/x-patch
Size: 917 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160308/f65e8a25/attachment.bin>


More information about the lldb-commits mailing list