forked from OSchip/llvm-project
Update some XFAILs after the 3.8->3.9 version change
llvm-svn: 257761
This commit is contained in:
parent
0626dd0d3b
commit
f84df99520
|
@ -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()
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue