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()
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()
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits