Commit fa370791 authored by Denis Bilenko's avatar Denis Bilenko

testrunner.py: don't print "test_xxx.py passed" when -q

parent 2dd03342
......@@ -286,7 +286,8 @@ def spawn_subprocess(arg, options, base_params):
elif retcode == 0:
if not output_printed and options.verbosity >= 1:
sys.stdout.write(output)
print '%s passed' % arg
if options.verbosity >= 0:
print '%s passed' % arg
success = True
else:
print '%s timed out' % arg
......
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