Setting isTryBuilder to no where necessary, try 3

This commit is contained in:
Sergio Durigan Junior 2014-12-16 01:14:14 -05:00
parent 444949e3eb
commit 9dd2efa567

View file

@ -20,7 +20,7 @@ class GdbCatSumfileCommand(ShellCommand):
branch = 'master'
parser = DejaResults()
cur_results = parser.read_sum_text(self.getLog('stdio').getText())
if istry == 'no':
if istry:
baseline = parser.read_baseline (builder, branch)
else:
baseline = parser.read_sum_file(builder, rev)
@ -30,7 +30,7 @@ class GdbCatSumfileCommand(ShellCommand):
if report is not '':
self.addCompleteLog('regressions', report)
result = FAILURE
if istry == 'no':
if istry:
parser.write_sum_file(cur_results, builder, rev)
# If there was no previous baseline, then this run
# gets the honor.