Skip to content

Commit e36978c

Browse files
Fix link errors for test_device single_sku tests
Related-To: LOCI-2319 Signed-off-by: Young Jin Yoon <[email protected]>
1 parent f3eb4e3 commit e36978c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

level_zero/core/test/unit_tests/sources/device/test_device.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -602,8 +602,8 @@ HWTEST_F(DeviceTest, whenPassingSchedulingHintExpStructToGetPropertiesThenProper
602602
}
603603
}
604604

605-
HWTEST_F(DeviceTest, givenAllThreadArbitrationPoliciesWhenPassingSchedulingHintExpStructToGetPropertiesThenPropertiesWithAllFlagsAreReturned) {
606-
struct MockHwInfoConfig : NEO::HwInfoConfigHw<IGFX_SKYLAKE> {
605+
HWTEST2_F(DeviceTest, givenAllThreadArbitrationPoliciesWhenPassingSchedulingHintExpStructToGetPropertiesThenPropertiesWithAllFlagsAreReturned, MatchAny) {
606+
struct MockHwInfoConfig : NEO::HwInfoConfigHw<productFamily> {
607607
std::vector<uint32_t> getKernelSupportedThreadArbitrationPolicies() override {
608608
return threadArbPolicies;
609609
}
@@ -642,8 +642,8 @@ HWTEST_F(DeviceTest, givenAllThreadArbitrationPoliciesWhenPassingSchedulingHintE
642642
EXPECT_EQ(expected, schedulingHintProperties.schedulingHintFlags);
643643
}
644644

645-
HWTEST_F(DeviceTest, givenIncorrectThreadArbitrationPolicyWhenPassingSchedulingHintExpStructToGetPropertiesThenNoneIsReturned) {
646-
struct MockHwInfoConfig : NEO::HwInfoConfigHw<IGFX_SKYLAKE> {
645+
HWTEST2_F(DeviceTest, givenIncorrectThreadArbitrationPolicyWhenPassingSchedulingHintExpStructToGetPropertiesThenNoneIsReturned, MatchAny) {
646+
struct MockHwInfoConfig : NEO::HwInfoConfigHw<productFamily> {
647647
std::vector<uint32_t> getKernelSupportedThreadArbitrationPolicies() override {
648648
return threadArbPolicies;
649649
}

0 commit comments

Comments
 (0)