test: vboot: Put each test variant in its own section
Use 'cons.log.section' feature to split up the test output. This makes it easier to read. Suggested-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ac9a23cffc
commit
851271a71a
|
@ -67,7 +67,7 @@ def test_vboot(u_boot_console):
|
||||||
"""
|
"""
|
||||||
cons.cleanup_spawn()
|
cons.cleanup_spawn()
|
||||||
cons.ensure_spawned()
|
cons.ensure_spawned()
|
||||||
cons.log.action('%s: Test Verified Boot Run: %s' % (sha_algo, test_type))
|
with cons.log.section('Verified boot %s %s' % (sha_algo, test_type)):
|
||||||
output = cons.run_command_list(
|
output = cons.run_command_list(
|
||||||
['sb load hostfs - 100 %stest.fit' % tmpdir,
|
['sb load hostfs - 100 %stest.fit' % tmpdir,
|
||||||
'fdt addr 100',
|
'fdt addr 100',
|
||||||
|
|
Loading…
Reference in New Issue