Commit 511bef4c authored by Denis Bilenko's avatar Denis Bilenko

testrunner.py: don't print output twice on -v -v

parent 77e940c2
......@@ -292,7 +292,7 @@ def spawn_subprocesses(options, args):
print '%s failed with code %s' % (arg, retcode)
fail = True
elif retcode == 0:
if options.verbosity > 0:
if options.verbosity == 1: # // if verbosity is 2 then output is always printed by run_subprocess
sys.stdout.write(output)
print '%s passed' % arg
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment