Move isBlitterForImagesSupported ULTs to correct files

Signed-off-by: Rafal Maziejuk <rafal.maziejuk@intel.com>
This commit is contained in:
Rafal Maziejuk
2021-10-15 16:34:11 +00:00
committed by Compute-Runtime-Automation
parent 5ec0833fa8
commit 95032bb215
4 changed files with 12 additions and 12 deletions

View File

@@ -110,3 +110,10 @@ XEHPTEST_F(TestXeHPHwInfoConfig, givenXEHPWhenHeapInLocalMemIsCalledThenCorrectV
EXPECT_TRUE(hwInfoConfig.heapInLocalMem(hwInfo));
}
}
XEHPTEST_F(TestXeHPHwInfoConfig, givenXeHpCoreWhenIsBlitterForImagesSupportedIsCalledThenFalseIsReturned) {
HardwareInfo hwInfo = *defaultHwInfo;
const auto &hwInfoConfig = *HwInfoConfig::get(hwInfo.platform.eProductFamily);
EXPECT_FALSE(hwInfoConfig.isBlitterForImagesSupported());
}