[Lldb-commits] [PATCH] D32522: Test case for the issue raised in D32271

Ed Maste via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Sat Sep 2 18:48:16 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL312431: Add test case for attach-by-pid from different cwd (authored by emaste).

Changed prior to commit:
  https://reviews.llvm.org/D32522?vs=113067&id=113671#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D32522

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


Index: lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py
===================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py
+++ lldb/trunk/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,29 @@
         process = target.GetProcess()
         self.assertTrue(process, PROCESS_IS_VALID)
 
+    def test_attach_to_process_from_different_dir_by_id(self):
+        """Test attach by process id"""
+        try:
+            os.mkdir(os.path.join(os.getcwd(),'newdir'))
+        except OSError, e:
+            if e.errno != os.errno.EEXIST:
+                raise
+        self.buildProgram('main.cpp',os.path.join(os.getcwd(),'newdir','proc_attach'))
+        exe = os.path.join('.','newdir','proc_attach')
+        self.addTearDownHook(lambda: shutil.rmtree(os.path.join(os.getcwd())))
+
+        # Spawn a new process
+        popen = self.spawnSubprocess(exe)
+        self.addTearDownHook(self.cleanupSubprocesses)
+
+        os.chdir('newdir')
+        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()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D32522.113671.patch
Type: text/x-patch
Size: 1636 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20170903/16f9ab6c/attachment-0001.bin>


More information about the lldb-commits mailing list