diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/decorators.py | 6 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/decorators.py b/lldb/packages/Python/lldbsuite/test/decorators.py index 365df7cc95f..e2223ed7044 100644 --- a/lldb/packages/Python/lldbsuite/test/decorators.py +++ b/lldb/packages/Python/lldbsuite/test/decorators.py @@ -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 diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py b/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py index ff3bd99ced9..3ea7d9b76b6 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py +++ b/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py @@ -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") |