mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 17:13:29 +08:00
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:
committed by
Compute-Runtime-Automation
parent
f3eb4e3ddf
commit
e36978ce86
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user