From 479c97beafc4e13ee9a93c0ce06cf59b022e92f9 Mon Sep 17 00:00:00 2001 From: Krzysztof Gibala Date: Tue, 18 Jan 2022 16:03:09 +0000 Subject: [PATCH] Fix tests case name Signed-off-by: Krzysztof Gibala --- opencl/test/unit_test/gen12lp/dg1/hw_helper_tests_dg1.cpp | 6 +++--- opencl/test/unit_test/gen12lp/rkl/test_hw_helper_rkl.cpp | 6 +++--- .../test/unit_test/gen12lp/tgllp/test_hw_helper_tgllp.cpp | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/opencl/test/unit_test/gen12lp/dg1/hw_helper_tests_dg1.cpp b/opencl/test/unit_test/gen12lp/dg1/hw_helper_tests_dg1.cpp index 3478f0fa92..221305cf2f 100644 --- a/opencl/test/unit_test/gen12lp/dg1/hw_helper_tests_dg1.cpp +++ b/opencl/test/unit_test/gen12lp/dg1/hw_helper_tests_dg1.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020-2021 Intel Corporation + * Copyright (C) 2020-2022 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -13,7 +13,7 @@ using HwHelperTestDg1 = HwHelperTest; -DG1TEST_F(HwHelperTestDg1, givenDg1A0WhenAdjustDefaultEngineTypeCalledThenRcsIsReturned) { +DG1TEST_F(HwHelperTestDg1, givenDg1SteppingA0WhenAdjustDefaultEngineTypeCalledThenRcsIsReturned) { auto &helper = HwHelper::get(renderCoreFamily); const auto &hwInfoConfig = *HwInfoConfig::get(productFamily); hardwareInfo.featureTable.flags.ftrCCSNode = true; @@ -23,7 +23,7 @@ DG1TEST_F(HwHelperTestDg1, givenDg1A0WhenAdjustDefaultEngineTypeCalledThenRcsIsR EXPECT_EQ(aub_stream::ENGINE_RCS, hardwareInfo.capabilityTable.defaultEngineType); } -DG1TEST_F(HwHelperTestDg1, givenDg1BWhenAdjustDefaultEngineTypeCalledThenCcsIsReturned) { +DG1TEST_F(HwHelperTestDg1, givenDg1SteppingBWhenAdjustDefaultEngineTypeCalledThenRcsIsReturned) { auto &helper = HwHelper::get(renderCoreFamily); const auto &hwInfoConfig = *HwInfoConfig::get(productFamily); hardwareInfo.featureTable.flags.ftrCCSNode = true; diff --git a/opencl/test/unit_test/gen12lp/rkl/test_hw_helper_rkl.cpp b/opencl/test/unit_test/gen12lp/rkl/test_hw_helper_rkl.cpp index fe5328dbd4..10f35432c7 100644 --- a/opencl/test/unit_test/gen12lp/rkl/test_hw_helper_rkl.cpp +++ b/opencl/test/unit_test/gen12lp/rkl/test_hw_helper_rkl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020-2021 Intel Corporation + * Copyright (C) 2020-2022 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -10,7 +10,7 @@ using HwHelperTestRkl = HwHelperTest; -RKLTEST_F(HwHelperTestRkl, givenRklA0WhenAdjustDefaultEngineTypeCalledThenRcsIsReturned) { +RKLTEST_F(HwHelperTestRkl, givenRklSteppingA0WhenAdjustDefaultEngineTypeCalledThenRcsIsReturned) { const auto &hwInfoConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); hardwareInfo.featureTable.flags.ftrCCSNode = true; hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hardwareInfo); @@ -20,7 +20,7 @@ RKLTEST_F(HwHelperTestRkl, givenRklA0WhenAdjustDefaultEngineTypeCalledThenRcsIsR EXPECT_EQ(aub_stream::ENGINE_RCS, hardwareInfo.capabilityTable.defaultEngineType); } -RKLTEST_F(HwHelperTestRkl, givenRklBWhenAdjustDefaultEngineTypeCalledThenCcsIsReturned) { +RKLTEST_F(HwHelperTestRkl, givenRklSteppingBWhenAdjustDefaultEngineTypeCalledThenRcsIsReturned) { const auto &hwInfoConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); hardwareInfo.featureTable.flags.ftrCCSNode = true; hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_B, hardwareInfo); diff --git a/opencl/test/unit_test/gen12lp/tgllp/test_hw_helper_tgllp.cpp b/opencl/test/unit_test/gen12lp/tgllp/test_hw_helper_tgllp.cpp index 8c4b4c86e5..f4f261f886 100644 --- a/opencl/test/unit_test/gen12lp/tgllp/test_hw_helper_tgllp.cpp +++ b/opencl/test/unit_test/gen12lp/tgllp/test_hw_helper_tgllp.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019-2021 Intel Corporation + * Copyright (C) 2019-2022 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -10,7 +10,7 @@ using HwHelperTestGen12Lp = HwHelperTest; -TGLLPTEST_F(HwHelperTestGen12Lp, givenTgllpA0WhenAdjustDefaultEngineTypeCalledThenRcsIsReturned) { +TGLLPTEST_F(HwHelperTestGen12Lp, givenTgllpSteppingA0WhenAdjustDefaultEngineTypeCalledThenRcsIsReturned) { const auto &hwInfoConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); hardwareInfo.featureTable.flags.ftrCCSNode = true; hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A0, hardwareInfo); @@ -20,7 +20,7 @@ TGLLPTEST_F(HwHelperTestGen12Lp, givenTgllpA0WhenAdjustDefaultEngineTypeCalledTh EXPECT_EQ(aub_stream::ENGINE_RCS, hardwareInfo.capabilityTable.defaultEngineType); } -TGLLPTEST_F(HwHelperTestGen12Lp, givenTgllpBWhenAdjustDefaultEngineTypeCalledThenRcsIsReturned) { +TGLLPTEST_F(HwHelperTestGen12Lp, givenTgllpSteppingBWhenAdjustDefaultEngineTypeCalledThenRcsIsReturned) { const auto &hwInfoConfig = *HwInfoConfig::get(hardwareInfo.platform.eProductFamily); hardwareInfo.featureTable.flags.ftrCCSNode = true; hardwareInfo.platform.usRevId = hwInfoConfig.getHwRevIdFromStepping(REVISION_A1, hardwareInfo);