From 56846c0294f8ebb84396022d29213c663eeda8c3 Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Sun, 6 Jul 2025 11:37:48 +0530 Subject: [PATCH] ftests: Fix false positive in 010 testcase Fix the false positive in the testcase number 010, the return value should be by default `TEST_FAILED`, instead of `TEST_PASSED`. The flow of the testcase is designed to set the return value to `TEST_PASSED` only if the current kernel's cpu controller settings matches any of the expected cpu controller output list. Fixes: 88ffe562376f ("ftests/010: Refactor code to match outputs with same line") Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- tests/ftests/010-cgget-g_flag_controller_and_cgroup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ftests/010-cgget-g_flag_controller_and_cgroup.py b/tests/ftests/010-cgget-g_flag_controller_and_cgroup.py index 50a3f698..25c7dd8a 100755 --- a/tests/ftests/010-cgget-g_flag_controller_and_cgroup.py +++ b/tests/ftests/010-cgget-g_flag_controller_and_cgroup.py @@ -27,7 +27,7 @@ def setup(config): def test(config): - result = consts.TEST_PASSED + result = consts.TEST_FAILED cause = None out = Cgroup.get(config, controller='{}:{}'.format(CONTROLLER, CGNAME), -- 2.47.3