Remove flaky decorator from two tests on linux
authorPavel Labath <labath@google.com>
Mon, 25 Apr 2016 10:32:23 +0000 (10:32 +0000)
committerPavel Labath <labath@google.com>
Mon, 25 Apr 2016 10:32:23 +0000 (10:32 +0000)
The flakyness is no longer reproducible, and the tests seem to be passing reliably now.

llvm-svn: 267392

lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/TestCreateAfterAttach.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py

index ad67fef..1cb9735 100644 (file)
@@ -30,7 +30,6 @@ class CreateAfterAttachTestCase(TestBase):
                    # for FreeBSD.
     @skipIfRemote
     @skipIfWindows # Windows doesn't have fork.
-    @expectedFlakeyLinux("llvm.org/pr16229") # 1/100 dosep, build 3546, clang-3.5 x84_64
     @skipIfiOSSimulator
     def test_create_after_attach_with_fork(self):
         """Test thread creation after process attach."""
index 647d5d0..af4a022 100644 (file)
@@ -17,21 +17,18 @@ class ExitDuringStepTestCase(TestBase):
     mydir = TestBase.compute_mydir(__file__)
 
     @skipIfFreeBSD # llvm.org/pr21411: test is hanging
-    @expectedFlakeyAndroid("llvm.org/pr26206")
     def test(self):
         """Test thread exit during step handling."""
         self.build(dictionary=self.getBuildFlags())
         self.exit_during_step_base("thread step-inst -m all-threads", 'stop reason = instruction step')
 
     @skipIfFreeBSD # llvm.org/pr21411: test is hanging
-    @expectedFlakeyAndroid("llvm.org/pr26206")
     def test_step_over(self):
         """Test thread exit during step-over handling."""
         self.build(dictionary=self.getBuildFlags())
         self.exit_during_step_base("thread step-over -m all-threads", 'stop reason = step over')
 
     @skipIfFreeBSD # llvm.org/pr21411: test is hanging
-    @expectedFlakeyAndroid("llvm.org/pr26206")
     def test_step_in(self):
         """Test thread exit during step-in handling."""
         self.build(dictionary=self.getBuildFlags())