forked from OSchip/llvm-project
[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:
parent
0c5b6e2ea5
commit
01387c44d0
|
@ -10,17 +10,18 @@ from lldbsuite.test.lldbtest import *
|
||||||
from lldbsuite.test import lldbutil
|
from lldbsuite.test import lldbutil
|
||||||
|
|
||||||
|
|
||||||
class CreateAfterAttachTestCase(TestBase):
|
class ReproducerAttachTestCase(TestBase):
|
||||||
|
|
||||||
mydir = TestBase.compute_mydir(__file__)
|
mydir = TestBase.compute_mydir(__file__)
|
||||||
NO_DEBUG_INFO_TESTCASE = True
|
NO_DEBUG_INFO_TESTCASE = True
|
||||||
|
|
||||||
|
@skipIfLinux # Reproducer received unexpected packet.
|
||||||
@skipIfFreeBSD
|
@skipIfFreeBSD
|
||||||
@skipIfNetBSD
|
@skipIfNetBSD
|
||||||
@skipIfWindows
|
@skipIfWindows
|
||||||
@skipIfRemote
|
@skipIfRemote
|
||||||
@skipIfiOSSimulator
|
@skipIfiOSSimulator
|
||||||
def test_create_after_attach_with_fork(self):
|
def test_reproducer_attach(self):
|
||||||
"""Test thread creation after process attach."""
|
"""Test thread creation after process attach."""
|
||||||
exe = '%s_%d' % (self.testMethodName, os.getpid())
|
exe = '%s_%d' % (self.testMethodName, os.getpid())
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue