run_engine(): add the 'result' argument and put the JSON output into it
authorAlexander Popov <alex.popov@linux.com>
Fri, 24 Mar 2023 20:15:38 +0000 (23:15 +0300)
committerAlexander Popov <alex.popov@linux.com>
Fri, 24 Mar 2023 20:15:38 +0000 (23:15 +0300)
kconfig_hardened_check/test_engine.py

index 68bef44dbbc19bb324c364364e8b4756a90b98cf..c5f6beb55c8800a5e3c29f343240d5641fca1d9b 100644 (file)
@@ -47,7 +47,9 @@ class TestEngine(unittest.TestCase):
     """
 
     @staticmethod
-    def run_engine(checklist, parsed_kconfig_options, parsed_cmdline_options, kernel_version):
+    def run_engine(checklist,
+                   parsed_kconfig_options, parsed_cmdline_options, kernel_version,
+                   result):
         # populate the checklist with data
         populate_with_data(checklist, parsed_kconfig_options, 'kconfig')
         populate_with_data(checklist, parsed_cmdline_options, 'cmdline')
@@ -56,18 +58,17 @@ class TestEngine(unittest.TestCase):
         # now everything is ready, perform the checks
         perform_checks(checklist)
 
-        # print the results in JSON
-        output = []
-        print('JSON:')
-        for opt in checklist:
-            output.append(opt.json_dump(True)) # with_results
-        print(json.dumps(output))
-
         # print the table with the results
         print('TABLE:')
         for opt in checklist:
             opt.table_print(None, True) # default mode, with_results
             print()
+
+        # print the results in JSON
+        print('JSON:')
+        for opt in checklist:
+            result.append(opt.json_dump(True)) # with_results
+        print(json.dumps(result))
         print()
 
     def test_1(self):