Skip to content

Commit dc20628

Browse files
ci: infra update
- adjust aub tests Signed-off-by: Mateusz Hoppe <[email protected]>
1 parent 21021f0 commit dc20628

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

manifests/infra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ components:
33
branch: master
44
dest_dir: infra
55
fetch_tags: true
6-
revision: v6658
6+
revision: v6663
77
type: git
88
converter: M-3107
99
version: '1'

opencl/test/unit_test/aub_tests/command_queue/large_grf_aub_tests_xehp_and_later.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ HWTEST2_P(LargeGrfTest, givenMixedLargeGrfAndSmallGrfKernelsWhenExecutedThenResu
459459
}
460460
} else {
461461
auto &gfxCoreHelper = executionEnvironment->rootDeviceEnvironments[0]->getHelper<GfxCoreHelper>();
462-
if (gfxCoreHelper.areSecondaryContextsSupported() == false) {
462+
if (gfxCoreHelper.areSecondaryContextsSupported() == false || device->device.disableSecondaryEngines) {
463463
ASSERT_EQ(1u, largeGrfValues.size());
464464
EXPECT_FALSE(largeGrfValues[0]);
465465
} else {

opencl/test/unit_test/aub_tests/fixtures/aub_fixture.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2018-2023 Intel Corporation
2+
* Copyright (C) 2018-2025 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -53,6 +53,7 @@ class AUBFixture : public CommandQueueHwFixture {
5353

5454
auto pDevice = MockDevice::create<MockDevice>(executionEnvironment, rootDeviceIndex);
5555
device = std::make_unique<MockClDevice>(pDevice);
56+
pDevice->disableSecondaryEngines = true;
5657

5758
this->csr = pDevice->getDefaultEngine().commandStreamReceiver;
5859

0 commit comments

Comments
 (0)