Skip to content

Commit

Permalink
contest: vmksft-p: propagate crashes out
Browse files Browse the repository at this point in the history
Recent commit added reporting of crashes, but missed adding
them to results.

Signed-off-by: Jakub Kicinski <[email protected]>
  • Loading branch information
kuba-moo committed Mar 9, 2024
1 parent 60fd741 commit 9856152
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions contest/remote/vmksft-p.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,9 @@ def test(binfo, rinfo, cbarg):
'result': r["result"],
'link': link + '/' + r['file_name']
}
if 'retry' in r:
outcome['retry'] = r['retry']
for key in ['retry', 'crashes']:
if key in r:
outcome[key] = r[key]
cases.append(outcome)
if not in_queue.empty():
print("ERROR: in queue is not empty")
Expand Down

0 comments on commit 9856152

Please sign in to comment.