ULT renaming: Gen-specific Product Family tests

Related-To: NEO-2236

Change-Id: I4d4e992765fa9d3b8567da63f51797f2c06f9787
Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
Adam Cetnerowski
2020-10-31 21:09:35 +01:00
committed by sys_ocldev
parent 0e9be40a7c
commit 2dcc2f5422
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ using namespace NEO;
typedef Test<ClDeviceFixture> BroadwellOnlyTest;
BDWTEST_F(BroadwellOnlyTest, shouldPassOnBdw) {
BDWTEST_F(BroadwellOnlyTest, WhenGettingProductFamilyThenBroadwellIsReturned) {
EXPECT_EQ(IGFX_BROADWELL, pDevice->getHardwareInfo().platform.eProductFamily);
}

View File

@ -12,6 +12,6 @@ using namespace NEO;
typedef Test<ClDeviceFixture> SkylakeOnlyTest;
SKLTEST_F(SkylakeOnlyTest, shouldPassOnSkl) {
SKLTEST_F(SkylakeOnlyTest, WhenGettingProductFamilyThenSkylakeIsReturned) {
EXPECT_EQ(IGFX_SKYLAKE, pDevice->getHardwareInfo().platform.eProductFamily);
}