test: disable context group in OCL DeviceGetCapsTest

Related-To: NEO-13789

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
Mateusz Hoppe 2025-01-25 07:18:48 +00:00 committed by Compute-Runtime-Automation
parent e00da808cb
commit c265e9bc7a
1 changed files with 2 additions and 0 deletions

View File

@ -42,6 +42,7 @@ using namespace NEO;
struct DeviceGetCapsTest : public ::testing::Test {
void SetUp() override {
debugManager.flags.ContextGroupSize.set(0);
MockSipData::clearUseFlags();
backupSipInitType = std::make_unique<VariableBackup<bool>>(&MockSipData::useMockSip, true);
}
@ -130,6 +131,7 @@ struct DeviceGetCapsTest : public ::testing::Test {
EXPECT_EQ(clDevice.getDeviceInfo().openclCFeatures.end(), ++openclCFeatureIterator);
}
DebugManagerStateRestore restorer;
std::unique_ptr<VariableBackup<bool>> backupSipInitType;
};