[lldb/Test] Temporarily skip TestReproducerAttach on Linux

The test is failing with an unexpected packet during replay. Temporarily
disabling the test while I setup and environment to investigate.
This commit is contained in:
Jonas Devlieghere 2020-03-13 10:03:52 -07:00
parent 0c5b6e2ea5
commit 01387c44d0
1 changed files with 3 additions and 2 deletions

View File

@ -10,17 +10,18 @@ from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
class CreateAfterAttachTestCase(TestBase):
class ReproducerAttachTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
NO_DEBUG_INFO_TESTCASE = True
@skipIfLinux # Reproducer received unexpected packet.
@skipIfFreeBSD
@skipIfNetBSD
@skipIfWindows
@skipIfRemote
@skipIfiOSSimulator
def test_create_after_attach_with_fork(self):
def test_reproducer_attach(self):
"""Test thread creation after process attach."""
exe = '%s_%d' % (self.testMethodName, os.getpid())