diff options
author | Tamas Berghammer <tberghammer@google.com> | 2016-01-14 12:49:48 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2016-01-14 12:49:48 +0000 |
commit | f84df99520791bb1397004adb0cd6ca6f659a0b0 (patch) | |
tree | ef04b399ac5bffc9e00fa6c5324731793d298c2a /lldb/packages/Python/lldbsuite | |
parent | 0626dd0d3b6b6251448344afaf44f9a65e4d00ca (diff) | |
download | bcm5719-llvm-f84df99520791bb1397004adb0cd6ca6f659a0b0.tar.gz bcm5719-llvm-f84df99520791bb1397004adb0cd6ca6f659a0b0.zip |
Update some XFAILs after the 3.8->3.9 version change
llvm-svn: 257761
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
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 5c4dc219a10..be7911e5636 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 a112b2a1777..b952755e10f 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") |