test-runner: start dmesg process with start_process

This avoids the need to pass in the context explicitly.
This commit is contained in:
James Prestwood 2021-02-18 12:19:27 -08:00 committed by Denis Kenzior
parent 25ec652423
commit a0865c9010
1 changed files with 1 additions and 1 deletions

View File

@ -1178,7 +1178,7 @@ def run_auto_tests(ctx, args):
# Write out kernel log
if ctx.args.log:
Process(["dmesg"], ctx=ctx, wait=True)
ctx.start_process(["dmesg"], wait=True)
def run_unit_tests(ctx, args):
os.chdir(args.testhome + '/unit')