diff options
author | Pavel Labath <labath@google.com> | 2017-06-13 11:13:11 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-06-13 11:13:11 +0000 |
commit | ba6a10fdcc18a3ef53b2ca2644dc42abccb686b1 (patch) | |
tree | 026c8c00295185fdf54040b131067f93c516cab3 /lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/TestCallThatRestarts.py | |
parent | 9ff06a0c7e01a9d30fabe13a33f3ab20524a1060 (diff) | |
download | bcm5719-llvm-ba6a10fdcc18a3ef53b2ca2644dc42abccb686b1.tar.gz bcm5719-llvm-ba6a10fdcc18a3ef53b2ca2644dc42abccb686b1.zip |
Mark TestCallThatRestarts as flaky on android
This test started being flaky since r303848 (RunThreadPlan: Fix halting
logic in IgnoreBreakpoints = false). I am not reverting that, as I am
confident that actually fixed a problem. A more likely explanation is
that there is still one corner case that is not handled correctly there.
Marking the test as flaky until I get a chance to investigate. I also
mark the test as no-debug-info-dependend -- it stresses expression
evaluation, as far as debug info goes, the test if extremely simple.
llvm-svn: 305286
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/TestCallThatRestarts.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/TestCallThatRestarts.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/TestCallThatRestarts.py b/lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/TestCallThatRestarts.py index bef4be1eb5f..0b9ad0ed632 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/TestCallThatRestarts.py +++ b/lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/TestCallThatRestarts.py @@ -14,6 +14,7 @@ from lldbsuite.test import lldbutil class ExprCommandThatRestartsTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) + NO_DEBUG_INFO_TESTCASE = True def setUp(self): # Call super's setUp(). @@ -25,6 +26,7 @@ class ExprCommandThatRestartsTestCase(TestBase): @skipIfFreeBSD # llvm.org/pr19246: intermittent failure @skipIfDarwin # llvm.org/pr19246: intermittent failure @skipIfWindows # Test relies on signals, unsupported on Windows + @expectedFlakeyAndroid(bugnumber="llvm.org/pr19246") def test(self): """Test calling function that hits a signal and restarts.""" self.build() |