From 9c3a07984f12101a9109ed2e2afa9c2bc3d394b6 Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Tue, 3 Feb 2015 01:06:35 +0000 Subject: [PATCH] Allow customizing the timeout of the inferior llvm-svn: 227906 --- lldb/test/lldbpexpect.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lldb/test/lldbpexpect.py b/lldb/test/lldbpexpect.py index 1a73b2820256..aa1e220df502 100644 --- a/lldb/test/lldbpexpect.py +++ b/lldb/test/lldbpexpect.py @@ -16,9 +16,11 @@ class PExpectTest(TestBase): def launchArgs(self): pass - def launch(self): - self.timeout = 5 + def launch(self, timeout=None): + if timeout is None: timeout = 30 self.child = pexpect.spawn('%s %s' % (self.lldbHere, self.launchArgs())) + self.child.timeout = timeout + self.timeout = timeout def expect(self, patterns=None, timeout=None, exact=None): if patterns is None: return None