================
@@ -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()
----------------
charles-zablit wrote:
I switched to using `time.time()`, this is better 👍
https://github.com/llvm/llvm-project/pull/174461
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits