Handling case for toolchain build failures

pull/1367/head
Brian Daniels 2015-09-29 12:08:08 -05:00
parent 4b5247fbd0
commit 4d86f2f944
1 changed files with 4 additions and 1 deletions

View File

@ -99,7 +99,10 @@ def add_test_runs(args):
system_outs = test_case.findall('system-out')
testRun['output'] = system_outs[0].text
if system_outs:
testRun['output'] = system_outs[0].text
else:
testRun['output'] = ""
errors = test_case.findall('error')