1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

selftest: Cope with testsuites without any output whatsoever (probably an error though).

This commit is contained in:
Jelmer Vernooij 2010-05-18 00:01:48 +02:00
parent f7f1a3a451
commit 11ec2916a7

View File

@ -109,7 +109,7 @@ class PlainFormatter(object):
if reason is not None:
self.output_msg("REASON: %s\n" % (reason,))
self.suitesfailed.append(name)
if self.immediate and not self.verbose:
if self.immediate and not self.verbose and name in self.test_output:
out += self.test_output[name]
unexpected = True