test_engine: add a missing case for test_OR()
authorAlexander Popov <alex.popov@linux.com>
Sun, 26 Mar 2023 16:09:39 +0000 (19:09 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sun, 26 Mar 2023 16:12:42 +0000 (19:12 +0300)
kconfig_hardened_check/test_engine.py

index 2f33a0e0afe6f5951234faf55aad576b216c0236..69659f58c192796276b4598aab8d93a6cf9f6709 100644 (file)
@@ -138,6 +138,8 @@ class TestEngine(unittest.TestCase):
                                 KconfigCheck('reason_4', 'decision_4', 'NAME_4', 'expected_4'))]
         config_checklist += [OR(KconfigCheck('reason_5', 'decision_5', 'NAME_5', 'expected_5'),
                                 KconfigCheck('reason_6', 'decision_6', 'NAME_6', 'expected_6'))]
+        config_checklist += [OR(KconfigCheck('reason_6', 'decision_6', 'NAME_6', 'expected_6'),
+                                KconfigCheck('reason_7', 'decision_7', 'NAME_7', 'is not set'))]
 
         # 2. prepare the parsed kconfig options
         parsed_kconfig_options = OrderedDict()
@@ -157,7 +159,8 @@ class TestEngine(unittest.TestCase):
                 result,
                 [["CONFIG_NAME_1", "kconfig", "expected_1", "decision_1", "reason_1", "OK"],
                  ["CONFIG_NAME_3", "kconfig", "expected_3", "decision_3", "reason_3", "OK: CONFIG_NAME_4 is \"expected_4\""],
-                 ["CONFIG_NAME_5", "kconfig", "expected_5", "decision_5", "reason_5", "FAIL: \"UNexpected_5\""]]
+                 ["CONFIG_NAME_5", "kconfig", "expected_5", "decision_5", "reason_5", "FAIL: \"UNexpected_5\""],
+                 ["CONFIG_NAME_6", "kconfig", "expected_6", "decision_6", "reason_6", "OK: CONFIG_NAME_7 is not found"]]
         )
 
     def test_AND(self):