Remove duplicated ULT

Change-Id: I92c0f55f795935e361767c30555a3a5d24e4abfc
Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
This commit is contained in:
Dunajski, Bartosz 2019-12-17 08:00:01 +01:00 committed by sys_ocldev
parent d60b121735
commit 43db1bffed
1 changed files with 0 additions and 9 deletions

View File

@ -797,12 +797,3 @@ HWTEST_F(HwHelperTest, givenDefaultHwHelperHwWhenIsForceDefaultRCSEngineWARequir
}
EXPECT_FALSE(HwHelperHw<FamilyType>::isForceDefaultRCSEngineWARequired(hardwareInfo));
}
TGLLPTEST_F(HwHelperTest, givenWaForceDefaultRcsEngineIsSetWhenAdjustDefaultEngineTypeIsCalledThenRcsIsUsedAsDefaultEngine) {
hardwareInfo.featureTable.ftrCCSNode = true;
hardwareInfo.platform.usRevId = REVISION_A0;
auto &helper = HwHelper::get(hardwareInfo.platform.eRenderCoreFamily);
helper.adjustDefaultEngineType(&hardwareInfo);
EXPECT_EQ(aub_stream::ENGINE_RCS, hardwareInfo.capabilityTable.defaultEngineType);
}