File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1010
1111using namespace NEO ;
1212
13+ typedef Test<DeviceFixture> IcelakeLpOnlyTest;
14+
15+ ICLLPTEST_F (IcelakeLpOnlyTest, shouldPassOnIcllp) {
16+ EXPECT_EQ (IGFX_ICELAKE_LP, pDevice->getHardwareInfo ().platform .eProductFamily );
17+ }
18+
1319typedef Test<DeviceFixture> Gen11OnlyTeset;
1420
1521GEN11TEST_F (Gen11OnlyTeset, shouldPassOnGen11) {
Original file line number Diff line number Diff line change @@ -20,4 +20,6 @@ typedef Test<DeviceFixture> Gen8OnlyTest;
2020
2121GEN8TEST_F (Gen8OnlyTest, shouldPassOnGen8) {
2222 EXPECT_EQ (IGFX_GEN8_CORE, pDevice->getRenderCoreFamily ());
23+ EXPECT_NE (IGFX_GEN9_CORE, pDevice->getRenderCoreFamily ());
24+ EXPECT_NE (IGFX_GEN10_CORE, pDevice->getRenderCoreFamily ());
2325}
Original file line number Diff line number Diff line change @@ -13,5 +13,7 @@ using namespace NEO;
1313typedef Test<DeviceFixture> Gen9OnlyTest;
1414
1515GEN9TEST_F (Gen9OnlyTest, shouldPassOnGen9) {
16+ EXPECT_NE (IGFX_GEN8_CORE, pDevice->getRenderCoreFamily ());
1617 EXPECT_EQ (IGFX_GEN9_CORE, pDevice->getRenderCoreFamily ());
18+ EXPECT_NE (IGFX_GEN10_CORE, pDevice->getRenderCoreFamily ());
1719}
You can’t perform that action at this time.
0 commit comments