From b6bc6a7c84188d2be78c69a345c884f76e7b4c38 Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Tue, 12 Sep 2017 11:20:27 -0700 Subject: [PATCH] Clarify timeout units. --- debug/testlib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/debug/testlib.py b/debug/testlib.py index 8ac616e..c41c332 100644 --- a/debug/testlib.py +++ b/debug/testlib.py @@ -333,6 +333,7 @@ class Gdb(object): self.child.expect(r"\(gdb\)") def command(self, command, timeout=6000): + """timeout is in seconds""" self.child.sendline(command) self.child.expect("\n", timeout=timeout) self.child.expect(r"\(gdb\)", timeout=timeout) -- 2.30.2