Commit 3b428f9b by Alexander Popov

Print the type of a check in the json mode

parent 544d7841
......@@ -626,7 +626,7 @@ def print_checklist(mode, checklist, with_results):
if mode == 'json':
opts = []
for o in checklist:
opt = ['CONFIG_'+o.name, o.expected, o.decision, o.reason]
opt = ['CONFIG_'+o.name, o.type, o.expected, o.decision, o.reason]
if with_results:
opt.append(o.result)
opts.append(opt)
......
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