vbalu updated this revision to Diff 96878.
vbalu added a comment.

Removed the changes from test frame work.


https://reviews.llvm.org/D32522

Files:
  
packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py


Index: 
packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py
===================================================================
--- 
packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py
+++ 
packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py
@@ -8,6 +8,7 @@
 import os
 import time
 import lldb
+import shutil
 from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
 from lldbsuite.test import lldbutil
@@ -38,6 +39,24 @@
         process = target.GetProcess()
         self.assertTrue(process, PROCESS_IS_VALID)
 
+       def test_attach_to_process_frm_different_dir_by_id(self):
+               """Test attach by process id"""
+        os.mkdir(os.path.join(os.getcwd(),'newdir'))
+        self.buildProgram('main.cpp','newdir/proc_attach')
+        exe = os.path.join(os.getcwd(), 'newdir/proc_attach')
+        self.addTearDownHook(lambda: shutil.rmtree(os.path.dirname(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 test_attach_to_process_by_name(self):
         """Test attach by process name"""
         self.build()


Index: packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py
===================================================================
--- packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py
+++ packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py
@@ -8,6 +8,7 @@
 import os
 import time
 import lldb
+import shutil
 from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
 from lldbsuite.test import lldbutil
@@ -38,6 +39,24 @@
         process = target.GetProcess()
         self.assertTrue(process, PROCESS_IS_VALID)
 
+	def test_attach_to_process_frm_different_dir_by_id(self):
+		"""Test attach by process id"""
+        os.mkdir(os.path.join(os.getcwd(),'newdir'))
+        self.buildProgram('main.cpp','newdir/proc_attach')
+        exe = os.path.join(os.getcwd(), 'newdir/proc_attach')
+        self.addTearDownHook(lambda: shutil.rmtree(os.path.dirname(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 test_attach_to_process_by_name(self):
         """Test attach by process name"""
         self.build()
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to