mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-11 14:16:07 +00:00
32 lines
791 B
Python
32 lines
791 B
Python
![]() |
"""
|
||
|
Test process attach/resume.
|
||
|
"""
|
||
|
|
||
|
from __future__ import print_function
|
||
|
|
||
|
|
||
|
import os
|
||
|
import time
|
||
|
import lldb
|
||
|
from lldbsuite.test.decorators import *
|
||
|
from lldbsuite.test.lldbtest import *
|
||
|
from lldbsuite.test import lldbutil
|
||
|
|
||
|
class TestDeletedExecutable(TestBase):
|
||
|
|
||
|
mydir = TestBase.compute_mydir(__file__)
|
||
|
NO_DEBUG_INFO_TESTCASE = True
|
||
|
|
||
|
@skipIfWindows # cannot delete a running executable
|
||
|
@expectedFailureAll(oslist=["linux"]) # determining the architecture of the process fails
|
||
|
def test(self):
|
||
|
self.build()
|
||
|
exe = self.getBuildArtifact("a.out")
|
||
|
|
||
|
popen = self.spawnSubprocess(exe)
|
||
|
self.addTearDownHook(self.cleanupSubprocesses)
|
||
|
os.remove(exe)
|
||
|
|
||
|
self.runCmd("process attach -p " + str(popen.pid))
|
||
|
self.runCmd("kill")
|