Remove the expectedFlakeyDsym decorator. It's not useful anymore.

llvm-svn: 346906
This commit is contained in:
Adrian Prantl 2018-11-14 22:54:43 +00:00
parent 5828115e58
commit dced6ee923
2 changed files with 0 additions and 7 deletions

View File

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

View File

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