test-runner: print results even if test run is canceled

This commit is contained in:
James Prestwood 2020-09-11 11:11:30 -07:00 committed by Denis Kenzior
parent 5b94c9d243
commit 561c64e7f8
1 changed files with 3 additions and 2 deletions

View File

@ -58,6 +58,9 @@ def exit_vm():
for p in config.ctx.processes:
print("Process %s still running!" % p.name)
if config.ctx and config.ctx.results:
print_results(config.ctx.results)
os.sync()
RB_AUTOBOOT = 0x01234567
@ -985,8 +988,6 @@ def run_auto_tests(ctx, args):
if ctx.args.log:
Process(["dmesg"], ctx=ctx, wait=True)
print_results(ctx.results)
def run_unit_tests(ctx, args):
os.chdir(args.testhome + '/unit')
units = build_unit_list(args)