Adding test for non-API process attach

llvm-svn: 180977
This commit is contained in:
Andrew Kaylor 2013-05-03 00:10:27 +00:00
parent f413f5ed44
commit 46791da61a
3 changed files with 106 additions and 0 deletions

View File

@ -0,0 +1,5 @@
LEVEL = ../../make
C_SOURCES := main.c
include $(LEVEL)/Makefile.rules

View File

@ -0,0 +1,87 @@
"""
Test process attach.
"""
import os, time
import unittest2
import lldb
from lldbtest import *
import lldbutil
class ProcessAttachTestCase(TestBase):
mydir = os.path.join("functionalities", "process_attach")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@dsym_test
def test_attach_to_process_by_id_with_dsym(self):
"""Test attach by process id"""
self.buildDsym()
self.process_attach_by_id()
@expectedFailureLinux # lldb is unable to attach to process by id
@dwarf_test
def test_attach_to_process_by_id_with_dwarf(self):
"""Test attach by process id"""
self.buildDwarf()
self.process_attach_by_id()
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@dsym_test
def test_attach_to_process_by_name_with_dsym(self):
"""Test attach by process name"""
self.buildDsym()
self.process_attach_by_name()
@expectedFailureLinux # due to bugzilla 14541 -- lldb is unable to attach to process by name
@dwarf_test
def test_attach_to_process_by_name_with_dwarf(self):
"""Test attach by process name"""
self.buildDwarf()
self.process_attach_by_name()
def setUp(self):
# Call super's setUp().
TestBase.setUp(self)
def process_attach_by_id(self):
"""Test attach by process id"""
exe = os.path.join(os.getcwd(), "a.out")
#target = self.dbg.CreateTarget(exe)
# Spawn a new process
popen = self.spawnSubprocess(exe)
self.addTearDownHook(self.cleanupSubprocesses)
self.runCmd("process attach -p " + str(popen.pid))
target = self.dbg.GetSelectedTarget()
process = target.GetProcess()
self.assertTrue(process, PROCESS_IS_VALID)
def process_attach_by_name(self):
"""Test attach by process name"""
exe = os.path.join(os.getcwd(), "a.out")
# Spawn a new process
popen = self.spawnSubprocess(exe)
self.addTearDownHook(self.cleanupSubprocesses)
target = self.dbg.GetSelectedTarget()
self.runCmd("process attach -n a.out")
proces = target.GetProcess()
self.assertTrue(process, PROCESS_IS_VALID)
if __name__ == '__main__':
import atexit
lldb.SBDebugger.Initialize()
atexit.register(lambda: lldb.SBDebugger.Terminate())
unittest2.main()

View File

@ -0,0 +1,14 @@
#include <stdio.h>
#include <unistd.h>
int main(int argc, char const *argv[]) {
// Waiting to be attached by the debugger.
int temp = 0;
while (temp < 30) // Waiting to be attached...
{
sleep(1);
temp++;
}
printf("Exiting now\n");
}