Browse Source

tests: dump more information when we fail to find something in logs.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 8 years ago
parent
commit
6dcd7f9d6d
  1. 8
      tests/utils.py

8
tests/utils.py

@ -108,9 +108,15 @@ class TailableProc(object):
ex = re.compile(regex)
start_time = time.time()
pos = max(len(self.logs) - offset, 0)
initial_pos = len(self.logs)
while True:
if time.time() > start_time + timeout:
print("Can't find {} in logs".format(regex))
with self.logs_cond:
for i in range(initial_pos, len(self.logs)):
print(" " + self.logs[i])
if self.is_in_log(regex):
print("(Was previously in logs!")
raise TimeoutError('Unable to find "{}" in logs.'.format(regex))
elif not self.running:
raise ValueError('Process died while waiting for logs')

Loading…
Cancel
Save