Skip to content

Commit d1d8f7f

Browse files
liamappelbecommit-bot@chromium.org
authored andcommitted
Change abi bot's results.json configuration field.
vm-dartkb-linux-release-x64-abi is not a real configuration, it's just the name of the bot. So if the configuration field needs to be a real configuration name this won't work. Change-Id: I703b13f15324eda4540d78707168a91ca00a6222 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/111861 Commit-Queue: Liam Appelbe <liama@google.com> Reviewed-by: William Hesse <whesse@google.com>
1 parent 00bbb5f commit d1d8f7f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/run_abi_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ def pickOne(d):
140140
def diffResults(results):
141141
outResult = pickOne(results)
142142
exp = results[None]['result'] if None in results else None
143+
outResult['configuration'] = 'vm-dartkb-linux-release-x64-abi'
143144
outResult['expected'] = exp
144145
outResult['result'] = exp
145146
outResult['matches'] = True
@@ -162,7 +163,7 @@ def makeLog(diffs, results, logRecords):
162163
logs = ["%s: %s" % (str(v), l['log']) for v, l in logRecords.items()]
163164
return {
164165
'name': result['name'],
165-
'configuration': result['configuration'],
166+
'configuration': 'vm-dartkb-linux-release-x64-abi',
166167
'result': result['result'],
167168
'log': '\n\n\n'.join([repr(diffs)] + logs),
168169
}

0 commit comments

Comments
 (0)