diff --git a/level_zero/core/test/unit_tests/sources/debugger/test_source_level_debugger.cpp b/level_zero/core/test/unit_tests/sources/debugger/test_source_level_debugger.cpp index 7fb0781b59..9e8c5ae0c5 100644 --- a/level_zero/core/test/unit_tests/sources/debugger/test_source_level_debugger.cpp +++ b/level_zero/core/test/unit_tests/sources/debugger/test_source_level_debugger.cpp @@ -27,7 +27,7 @@ namespace ult { using CommandQueueDebugCommandsTest = Test; -HWTEST2_F(CommandQueueDebugCommandsTest, givenDebuggingEnabledWhenCommandListIsExecutedThenKernelDebugCommandsAreAdded, IsAtMostGen12lp) { +HWTEST2_F(CommandQueueDebugCommandsTest, givenDebuggingEnabledWhenCommandListIsExecutedThenKernelDebugCommandsAreAdded, IsAtMostXeHpCore) { NEO::MockCompilerEnableGuard mock(true); ze_command_queue_desc_t queueDesc = {}; ze_result_t returnValue; @@ -74,7 +74,7 @@ HWTEST2_F(CommandQueueDebugCommandsTest, givenDebuggingEnabledWhenCommandListIsE commandQueue->destroy(); } -HWTEST2_F(CommandQueueDebugCommandsTest, givenDebuggingEnabledWhenCommandListIsExecutedTwiceThenKernelDebugCommandsAreAddedOnlyOnce, IsAtMostGen12lp) { +HWTEST2_F(CommandQueueDebugCommandsTest, givenDebuggingEnabledWhenCommandListIsExecutedTwiceThenKernelDebugCommandsAreAddedOnlyOnce, IsAtMostXeHpCore) { using MI_LOAD_REGISTER_IMM = typename FamilyType::MI_LOAD_REGISTER_IMM; using STATE_SIP = typename FamilyType::STATE_SIP; diff --git a/shared/test/common/test_macros/header/test.h b/shared/test/common/test_macros/header/test.h index 40ee29b1a6..51393d525b 100644 --- a/shared/test/common/test_macros/header/test.h +++ b/shared/test/common/test_macros/header/test.h @@ -1104,6 +1104,7 @@ using IsAtMostGen12lp = IsAtMostGfxCore; using IsAtLeastGen12lp = IsAtLeastGfxCore; using IsAtLeastXeHpCore = IsAtLeastGfxCore; +using IsAtMostXeHpCore = IsAtMostGfxCore; using IsADLS = IsProduct; using IsBXT = IsProduct; diff --git a/shared/test/unit_test/preamble/preamble_tests.cpp b/shared/test/unit_test/preamble/preamble_tests.cpp index db8c9c2df4..956b49ed45 100644 --- a/shared/test/unit_test/preamble/preamble_tests.cpp +++ b/shared/test/unit_test/preamble/preamble_tests.cpp @@ -106,7 +106,7 @@ HWTEST_F(PreambleTest, givenInactiveKernelDebuggingWhenPreambleKernelDebuggingCo EXPECT_EQ(0u, size); } -HWTEST2_F(PreambleTest, whenKernelDebuggingCommandsAreProgrammedThenCorrectCommandsArePlacedIntoStream, IsAtMostGen12lp) { +HWTEST2_F(PreambleTest, whenKernelDebuggingCommandsAreProgrammedThenCorrectCommandsArePlacedIntoStream, IsAtMostXeHpCore) { typedef typename FamilyType::MI_LOAD_REGISTER_IMM MI_LOAD_REGISTER_IMM; auto bufferSize = PreambleHelper::getKernelDebuggingCommandsSize(true);