[Lldb-commits] [lldb] r346906 - Remove the expectedFlakeyDsym decorator. It's not useful anymore.
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 14 14:54:43 PST 2018
Author: adrian
Date: Wed Nov 14 14:54:43 2018
New Revision: 346906
URL: http://llvm.org/viewvc/llvm-project?rev=346906&view=rev
Log:
Remove the expectedFlakeyDsym decorator. It's not useful anymore.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/decorators.py
lldb/trunk/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/decorators.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/decorators.py?rev=346906&r1=346905&r2=346906&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/decorators.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/decorators.py Wed Nov 14 14:54:43 2018
@@ -457,12 +457,6 @@ def expectedFlakey(expected_fn, bugnumbe
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
Modified: lldb/trunk/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py?rev=346906&r1=346905&r2=346906&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py Wed Nov 14 14:54:43 2018
@@ -28,7 +28,6 @@ class ExprCommandCallUserDefinedFunction
'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")
More information about the lldb-commits
mailing list