diff options
author | Pavel Labath <labath@google.com> | 2016-01-19 10:59:10 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-01-19 10:59:10 +0000 |
commit | f82d71f0257f305b6bd3a6ff617f4bcbdd0a0a2a (patch) | |
tree | b4bdaa8b5d5dc7ff719426034f763f437911a3ec /lldb/packages/Python/lldbsuite/test/functionalities/thread | |
parent | 8c6996f737fe941ce58366183c6bda2282b3054d (diff) | |
download | bcm5719-llvm-f82d71f0257f305b6bd3a6ff617f4bcbdd0a0a2a.tar.gz bcm5719-llvm-f82d71f0257f305b6bd3a6ff617f4bcbdd0a0a2a.zip |
Remove last XTIMEOUTs from android tests
TestHelloWorld seems to be passing now as far as I can tell. TestExitDuringStep is still hanging.
I have marked the relevant tests as flaky, which should handle the timeouts now as well. I'll be
monitoring the buildbots for fallout.
llvm-svn: 258114
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/thread')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py b/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py index 67d1c96fd34..f38872ce4f2 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py @@ -26,6 +26,7 @@ class ExitDuringStepTestCase(TestBase): @skipIfFreeBSD # llvm.org/pr21411: test is hanging @expectedFailureWindows("llvm.org/pr24681") + @expectedFlakeyAndroid("llvm.org/pr26206") def test(self): """Test thread exit during step handling.""" self.build(dictionary=self.getBuildFlags()) @@ -33,6 +34,7 @@ class ExitDuringStepTestCase(TestBase): @skipIfFreeBSD # llvm.org/pr21411: test is hanging @expectedFailureWindows("llvm.org/pr24681") + @expectedFlakeyAndroid("llvm.org/pr26206") def test_step_over(self): """Test thread exit during step-over handling.""" self.build(dictionary=self.getBuildFlags()) @@ -40,6 +42,7 @@ class ExitDuringStepTestCase(TestBase): @skipIfFreeBSD # llvm.org/pr21411: test is hanging @expectedFailureWindows("llvm.org/pr24681") + @expectedFlakeyAndroid("llvm.org/pr26206") def test_step_in(self): """Test thread exit during step-in handling.""" self.build(dictionary=self.getBuildFlags()) |