From cc17026c29cdc5e00affc556a930906ca9877b2f Mon Sep 17 00:00:00 2001 From: Slawomir Milczarek Date: Mon, 12 Feb 2024 12:42:43 +0100 Subject: [PATCH] fix: Fixed expect value of process count in sysman device test Fixes L0 CTS failure in test run with Compute Aggregation Layer test_sysman_device --gtest_filter=GivenInvalidComponentCount WhenRetrievingSysmanHandlesThenActualComponentCountIsUpdated Related-To: NEO-8927 Signed-off-by: Slawomir Milczarek --- .../sysman/test_sysman_device/src/test_sysman_device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conformance_tests/sysman/test_sysman_device/src/test_sysman_device.cpp b/conformance_tests/sysman/test_sysman_device/src/test_sysman_device.cpp index f9cea4b9..454f585b 100644 --- a/conformance_tests/sysman/test_sysman_device/src/test_sysman_device.cpp +++ b/conformance_tests/sysman/test_sysman_device/src/test_sysman_device.cpp @@ -258,7 +258,7 @@ TEST_F( lzt::get_processes_state(device, actual_count); uint32_t test_count = actual_count + 1; lzt::get_processes_state(device, test_count); - EXPECT_EQ(test_count, actual_count); + EXPECT_GE(test_count, actual_count); } }