forked from OSchip/llvm-project
Remove the expectedFlakeyDsym decorator. It's not useful anymore.
llvm-svn: 346906
This commit is contained in:
parent
5828115e58
commit
dced6ee923
|
@ -457,12 +457,6 @@ def expectedFlakey(expected_fn, bugnumber=None):
|
|||
return expectedFailure_impl
|
||||
|
||||
|
||||
def expectedFlakeyDsym(bugnumber=None):
|
||||
def fn(self):
|
||||
return self.getDebugInfo() == "dwarf"
|
||||
return expectedFlakey(fn, bugnumber)
|
||||
|
||||
|
||||
def expectedFlakeyOS(oslist, bugnumber=None, compilers=None):
|
||||
def fn(self):
|
||||
return (self.getPlatform() in oslist and
|
||||
|
|
|
@ -28,7 +28,6 @@ class ExprCommandCallUserDefinedFunction(TestBase):
|
|||
'main.cpp',
|
||||
'// Please test these expressions while stopped at this line:')
|
||||
|
||||
@expectedFlakeyDsym("llvm.org/pr20274")
|
||||
@expectedFailureAll(
|
||||
oslist=["windows"],
|
||||
bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows")
|
||||
|
|
Loading…
Reference in New Issue