================
@@ -25,10 +26,15 @@ def spawn(self, program, args=None):
         )
 
     def spawn_and_wait(self, program, delay):
+        SPAWN_AND_WAIT_TIMEOUT = 900
         time.sleep(delay)
         proc = self.spawn(program=program)
-        # Wait for either the process to exit or the event to be set
+        start_time = datetime.now()
----------------
ashgti wrote:

Should we just use `time.time()` or `time.monotonic()` instead of importing 
`datetime`?

https://github.com/llvm/llvm-project/pull/174461
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to