print output from failing builds in regression tests
This commit is contained in:
parent
2c727a1448
commit
d6bbb5be9e
|
@ -144,8 +144,10 @@ def run_tests(toolset, tests, features, options, test_dir, time_limit):
|
||||||
r = { 'status': p.returncode, 'output': output, 'command': command }
|
r = { 'status': p.returncode, 'output': output, 'command': command }
|
||||||
results[t + '|' + features] = r
|
results[t + '|' + features] = r
|
||||||
|
|
||||||
if p.returncode == 0: sys.stdout.write('.')
|
if p.returncode == 0:
|
||||||
else: sys.stdout.write('X')
|
sys.stdout.write('.')
|
||||||
|
else:
|
||||||
|
sys.stdout.write(output)
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
|
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
|
|
Loading…
Reference in New Issue