Update some XFAILs after the 3.8->3.9 version change

llvm-svn: 257761
This commit is contained in:
Tamas Berghammer 2016-01-14 12:49:48 +00:00
parent 0626dd0d3b
commit f84df99520
2 changed files with 2 additions and 2 deletions

View File

@ -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()

View File

@ -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")