Fix link errors for test_device single_sku tests

Related-To: LOCI-2319
Signed-off-by: Young Jin Yoon <young.jin.yoon@intel.com>
This commit is contained in:
Young Jin Yoon
2021-09-15 23:02:51 +00:00
committed by Compute-Runtime-Automation
parent f3eb4e3ddf
commit e36978ce86

View File

@@ -602,8 +602,8 @@ HWTEST_F(DeviceTest, whenPassingSchedulingHintExpStructToGetPropertiesThenProper
}
}
HWTEST_F(DeviceTest, givenAllThreadArbitrationPoliciesWhenPassingSchedulingHintExpStructToGetPropertiesThenPropertiesWithAllFlagsAreReturned) {
struct MockHwInfoConfig : NEO::HwInfoConfigHw<IGFX_SKYLAKE> {
HWTEST2_F(DeviceTest, givenAllThreadArbitrationPoliciesWhenPassingSchedulingHintExpStructToGetPropertiesThenPropertiesWithAllFlagsAreReturned, MatchAny) {
struct MockHwInfoConfig : NEO::HwInfoConfigHw<productFamily> {
std::vector<uint32_t> getKernelSupportedThreadArbitrationPolicies() override {
return threadArbPolicies;
}
@@ -642,8 +642,8 @@ HWTEST_F(DeviceTest, givenAllThreadArbitrationPoliciesWhenPassingSchedulingHintE
EXPECT_EQ(expected, schedulingHintProperties.schedulingHintFlags);
}
HWTEST_F(DeviceTest, givenIncorrectThreadArbitrationPolicyWhenPassingSchedulingHintExpStructToGetPropertiesThenNoneIsReturned) {
struct MockHwInfoConfig : NEO::HwInfoConfigHw<IGFX_SKYLAKE> {
HWTEST2_F(DeviceTest, givenIncorrectThreadArbitrationPolicyWhenPassingSchedulingHintExpStructToGetPropertiesThenNoneIsReturned, MatchAny) {
struct MockHwInfoConfig : NEO::HwInfoConfigHw<productFamily> {
std::vector<uint32_t> getKernelSupportedThreadArbitrationPolicies() override {
return threadArbPolicies;
}