Adding test for non-API process attach

git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@180977 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/functionalities/process_attach/Makefile b/test/functionalities/process_attach/Makefile
new file mode 100644
index 0000000..0d70f25
--- /dev/null
+++ b/test/functionalities/process_attach/Makefile
@@ -0,0 +1,5 @@
+LEVEL = ../../make
+
+C_SOURCES := main.c
+
+include $(LEVEL)/Makefile.rules
diff --git a/test/functionalities/process_attach/TestProcessAttach.py b/test/functionalities/process_attach/TestProcessAttach.py
new file mode 100644
index 0000000..71a24b3
--- /dev/null
+++ b/test/functionalities/process_attach/TestProcessAttach.py
@@ -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()
diff --git a/test/functionalities/process_attach/main.c b/test/functionalities/process_attach/main.c
new file mode 100644
index 0000000..8d30098
--- /dev/null
+++ b/test/functionalities/process_attach/main.c
@@ -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");
+}