Commit 5412568c by Alexander Popov

test_engine: improve the output

parent 8e779471
......@@ -15,6 +15,7 @@ import io
import sys
from collections import OrderedDict
import json
import inspect
from .engine import KconfigCheck, CmdlineCheck, SysctlCheck, VersionCheck, OR, AND, populate_with_data, perform_checks, override_expected_value
......@@ -68,14 +69,14 @@ class TestEngine(unittest.TestCase):
perform_checks(checklist)
# print the table with the results
print('TABLE:')
print(f'\n{inspect.stack()[1].function}():')
print('=' * 121)
for opt in checklist:
opt.table_print('verbose', True) # verbose mode, with_results
print()
print('=' * 121)
# print the results in JSON
print('JSON:')
result = []
for opt in checklist:
result.append(opt.json_dump(True)) # with_results
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment