style: configure readability-identifier-naming.LocalVariableCase

Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
Artur Harasimiuk
2022-05-12 14:04:41 +00:00
committed by Compute-Runtime-Automation
parent 24669e0219
commit 819e0f5515
127 changed files with 1414 additions and 1412 deletions

View File

@ -26,12 +26,12 @@ TEST(UnifiedSharingTests, givenContextCreatedWithExternalDeviceHandlePropertyWhe
ClDeviceVector allDevs(&deviceId, 1);
cl_int retVal{};
const cl_context_properties context_props[] = {
const cl_context_properties contextProps[] = {
static_cast<cl_context_properties>(UnifiedSharingContextType::DeviceHandle), 0,
CL_CONTEXT_INTEROP_USER_SYNC, 1,
0};
auto context = std::unique_ptr<MockContext>(Context::create<MockContext>(context_props, allDevs,
auto context = std::unique_ptr<MockContext>(Context::create<MockContext>(contextProps, allDevs,
nullptr, nullptr, retVal));
auto sharingFunctions = context->getSharing<UnifiedSharingFunctions>();
EXPECT_NE(nullptr, sharingFunctions);