ci: infra update

- adjust aub tests

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
Mateusz Hoppe
2025-01-28 13:46:18 +00:00
committed by Compute-Runtime-Automation
parent 21021f0340
commit dc20628864
3 changed files with 4 additions and 3 deletions

View File

@@ -459,7 +459,7 @@ HWTEST2_P(LargeGrfTest, givenMixedLargeGrfAndSmallGrfKernelsWhenExecutedThenResu
}
} else {
auto &gfxCoreHelper = executionEnvironment->rootDeviceEnvironments[0]->getHelper<GfxCoreHelper>();
if (gfxCoreHelper.areSecondaryContextsSupported() == false) {
if (gfxCoreHelper.areSecondaryContextsSupported() == false || device->device.disableSecondaryEngines) {
ASSERT_EQ(1u, largeGrfValues.size());
EXPECT_FALSE(largeGrfValues[0]);
} else {

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2023 Intel Corporation
* Copyright (C) 2018-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -53,6 +53,7 @@ class AUBFixture : public CommandQueueHwFixture {
auto pDevice = MockDevice::create<MockDevice>(executionEnvironment, rootDeviceIndex);
device = std::make_unique<MockClDevice>(pDevice);
pDevice->disableSecondaryEngines = true;
this->csr = pDevice->getDefaultEngine().commandStreamReceiver;