test: skip if heapless is enabled in inappropriate ults 9/n

Related-To: NEO-10641
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk
2024-08-13 12:28:12 +00:00
committed by Compute-Runtime-Automation
parent f3498d8a1a
commit 11d3257a08
5 changed files with 40 additions and 0 deletions

View File

@@ -121,6 +121,12 @@ HWTEST_F(CommandListAppendLaunchKernel, givenKernelWithStallRRThreadArbitrationP
}
HWTEST_F(CommandListAppendLaunchKernel, givenKernelWithThreadArbitrationPolicySetUsingSchedulingHintExtensionTheSameFlagIsUsedToSetCmdListThreadArbitrationPolicy) {
auto &compilerProductHelper = device->getCompilerProductHelper();
if (compilerProductHelper.isHeaplessModeEnabled()) {
GTEST_SKIP();
}
DebugManagerStateRestore restorer;
debugManager.flags.ForceThreadArbitrationPolicyProgrammingWithScm.set(1);

View File

@@ -7,6 +7,7 @@
#include "shared/source/command_stream/scratch_space_controller_xehp_and_later.h"
#include "shared/source/command_stream/wait_status.h"
#include "shared/source/helpers/compiler_product_helper.h"
#include "shared/source/helpers/gfx_core_helper.h"
#include "shared/test/common/cmd_parse/gen_cmd_parse.h"
#include "shared/test/common/helpers/unit_test_helper.h"
@@ -757,6 +758,12 @@ struct DeviceWithDualStorage : Test<DeviceFixture> {
};
HWTEST2_F(DeviceWithDualStorage, givenCmdListWithAppendedKernelAndUsmTransferAndBlitterDisabledWhenExecuteCmdListThenCfeStateOnceProgrammed, IsAtLeastXeHpCore) {
auto &compilerProductHelper = neoDevice->getCompilerProductHelper();
if (compilerProductHelper.isHeaplessModeEnabled()) {
GTEST_SKIP();
}
using CFE_STATE = typename FamilyType::CFE_STATE;
neoDevice->executionEnvironment->rootDeviceEnvironments[0]->memoryOperationsInterface = std::make_unique<MockMemoryOperationsHandler>();
ze_result_t res = ZE_RESULT_SUCCESS;