From f84df99520791bb1397004adb0cd6ca6f659a0b0 Mon Sep 17 00:00:00 2001 From: Tamas Berghammer Date: Thu, 14 Jan 2016 12:49:48 +0000 Subject: [PATCH] Update some XFAILs after the 3.8->3.9 version change llvm-svn: 257761 --- .../breakpoint/breakpoint_locations/TestBreakpointLocations.py | 2 +- .../lldbsuite/test/lang/c/const_variables/TestConstVariables.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py index 5c4dc219a106..be7911e56360 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py @@ -16,7 +16,7 @@ class BreakpointLocationsTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) @expectedFailureWindows("llvm.org/pr24528") - @expectedFailureAll(oslist=["linux"], compiler="clang", compiler_version=["=", "3.8"], archs=["i386"], debug_info="dwo") + @expectedFailureAll(oslist=["linux"], compiler="clang", compiler_version=[">=", "3.8"], archs=["i386"], debug_info="dwo") def test(self): """Test breakpoint enable/disable for a breakpoint ID with multiple locations.""" self.build() diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py b/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py index a112b2a1777c..b952755e10fa 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py @@ -21,7 +21,7 @@ class ConstVariableTestCase(TestBase): compiler="clang", compiler_version=["=", "3.7"]) @expectedFailureAll( oslist=["freebsd", "linux"], - compiler="clang", compiler_version=["=", "3.8"]) + compiler="clang", compiler_version=[">=", "3.8"]) @expectedFailureAll(oslist=["freebsd", "linux"], compiler="icc") @expectedFailureAll(archs=['mips', 'mipsel', 'mips64', 'mips64el']) @expectedFailureWindows("llvm.org/pr24489: Name lookup not working correctly on Windows")