diff options
author | Adrian Prantl <aprantl@apple.com> | 2018-11-14 22:54:43 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2018-11-14 22:54:43 +0000 |
commit | dced6ee92322dc80081830319d0fee1ac96b0bba (patch) | |
tree | 70801a333505bb511fb811f282fb1faed0cac44b | |
parent | 5828115e585fea8ef02294b3f728b812f9fa5630 (diff) | |
download | bcm5719-llvm-dced6ee92322dc80081830319d0fee1ac96b0bba.tar.gz bcm5719-llvm-dced6ee92322dc80081830319d0fee1ac96b0bba.zip |
Remove the expectedFlakeyDsym decorator. It's not useful anymore.
llvm-svn: 346906
-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") |