Get all of the log into the final log file
authorTim Newsome <tim@sifive.com>
Fri, 24 Aug 2018 00:04:57 +0000 (17:04 -0700)
committerTim Newsome <tim@sifive.com>
Fri, 24 Aug 2018 00:04:57 +0000 (17:04 -0700)
This allows me to see the final valgrind output on OpenOCD, so I can
watch for memory leaks when using --server_cmd "valgrind
--leak-check=full openocd".

debug/testlib.py

index 77795c65c9c889b382a40ec425df65e9deb80a5c..1d46b6c4a59cd93279595bba63a8115b780007d9 100644 (file)
@@ -299,7 +299,13 @@ class Openocd(object):
 
     def __del__(self):
         try:
 
     def __del__(self):
         try:
-            self.process.kill()
+            self.process.terminate()
+            start = time.time()
+            while time.time() < start + 10000:
+                if self.process.poll():
+                    break
+            else:
+                self.process.kill()
             self.process.wait()
         except (OSError, AttributeError):
             pass
             self.process.wait()
         except (OSError, AttributeError):
             pass
@@ -715,12 +721,15 @@ def header(title, dash='-', length=78):
     else:
         print dash * length
 
     else:
         print dash * length
 
-def print_log(path):
-    header(path)
-    for l in open(path, "r"):
+def print_log_handle(name, handle):
+    header(name)
+    for l in handle:
         sys.stdout.write(l)
     print
 
         sys.stdout.write(l)
     print
 
+def print_log(path):
+    print_log_handle(path, open(path, "r"))
+
 class BaseTest(object):
     compiled = {}
 
 class BaseTest(object):
     compiled = {}
 
@@ -816,10 +825,15 @@ class BaseTest(object):
             return result
 
         finally:
             return result
 
         finally:
+            # Get handles to logs before the files are deleted.
+            logs = []
             for log in self.logs:
             for log in self.logs:
-                print_log(log)
-            header("End of logs")
+                logs.append((log, open(log, "r")))
+
             self.classTeardown()
             self.classTeardown()
+            for name, handle in logs:
+                print_log_handle(name, handle)
+            header("End of logs")
 
         if not result:
             result = 'pass'
 
         if not result:
             result = 'pass'