@@ -470,6 +470,7 @@ TEST(Device_GetCaps, givenEnableVmeSetToTrueAndDeviceSupportsVmeWhenCapsAreCreat
470470 const auto &caps = device->getDeviceInfo ();
471471
472472 EXPECT_THAT (caps.deviceExtensions , testing::HasSubstr (std::string (" cl_intel_motion_estimation" )));
473+ EXPECT_THAT (caps.deviceExtensions , testing::HasSubstr (std::string (" cl_intel_device_side_avc_motion_estimation" )));
473474 EXPECT_TRUE (caps.vmeExtension );
474475
475476 EXPECT_THAT (caps.builtInKernels , testing::HasSubstr (" block_motion_estimate_intel" ));
@@ -484,6 +485,7 @@ TEST(Device_GetCaps, givenEnableVmeSetToTrueAndDeviceDoesNotSupportVmeWhenCapsAr
484485 const auto &caps = device->getDeviceInfo ();
485486
486487 EXPECT_THAT (caps.deviceExtensions , testing::Not (testing::HasSubstr (std::string (" cl_intel_motion_estimation" ))));
488+ EXPECT_THAT (caps.deviceExtensions , testing::Not (testing::HasSubstr (std::string (" cl_intel_device_side_avc_motion_estimation" ))));
487489 EXPECT_FALSE (caps.vmeExtension );
488490
489491 EXPECT_THAT (caps.builtInKernels , testing::Not (testing::HasSubstr (" block_motion_estimate_intel" )));
@@ -498,6 +500,7 @@ TEST(Device_GetCaps, givenEnableVmeSetToFalseAndDeviceDoesNotSupportVmeWhenCapsA
498500 const auto &caps = device->getDeviceInfo ();
499501
500502 EXPECT_THAT (caps.deviceExtensions , testing::Not (testing::HasSubstr (std::string (" cl_intel_motion_estimation" ))));
503+ EXPECT_THAT (caps.deviceExtensions , testing::Not (testing::HasSubstr (std::string (" cl_intel_device_side_avc_motion_estimation" ))));
501504 EXPECT_FALSE (caps.vmeExtension );
502505
503506 EXPECT_THAT (caps.builtInKernels , testing::Not (testing::HasSubstr (" block_motion_estimate_intel" )));
@@ -512,6 +515,7 @@ TEST(Device_GetCaps, givenEnableVmeSetToFalseAndDeviceSupportsVmeWhenCapsAreCrea
512515 const auto &caps = device->getDeviceInfo ();
513516
514517 EXPECT_THAT (caps.deviceExtensions , testing::Not (testing::HasSubstr (std::string (" cl_intel_motion_estimation" ))));
518+ EXPECT_THAT (caps.deviceExtensions , testing::Not (testing::HasSubstr (std::string (" cl_intel_device_side_avc_motion_estimation" ))));
515519 EXPECT_FALSE (caps.vmeExtension );
516520
517521 EXPECT_THAT (caps.builtInKernels , testing::Not (testing::HasSubstr (" block_motion_estimate_intel" )));
0 commit comments