From 372081b9df67e705cddd9b072fe26020b8fb3bea Mon Sep 17 00:00:00 2001 From: Adam Cetnerowski Date: Mon, 8 Mar 2021 10:18:29 +0000 Subject: [PATCH] ULT renaming: OpenCL API tests Related-To: NEO-2236 Signed-off-by: Adam Cetnerowski --- opencl/test/unit_test/api/cl_intel_motion_estimation.cpp | 4 ++-- .../unit_test/api/cl_mem_locally_uncached_resource_tests.cpp | 4 ++-- opencl/test/unit_test/api/cl_release_event_tests.inl | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/opencl/test/unit_test/api/cl_intel_motion_estimation.cpp b/opencl/test/unit_test/api/cl_intel_motion_estimation.cpp index 66884a4390..aa0f959e01 100644 --- a/opencl/test/unit_test/api/cl_intel_motion_estimation.cpp +++ b/opencl/test/unit_test/api/cl_intel_motion_estimation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017-2020 Intel Corporation + * Copyright (C) 2017-2021 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -319,7 +319,7 @@ TEST_F(IntelMotionEstimationGetInfoTest, GivenDescriptorLengthZeroAndDescriptorN EXPECT_EQ(sizeof(cl_motion_estimation_desc_intel), param_value_size_ret); } -TEST_F(IntelMotionEstimationGetInfoTest, getInfoTypeExpectPass) { +TEST_F(IntelMotionEstimationGetInfoTest, GivenAcceleratorTypeWhenGettingAcceleratorInfoThenAcceleratorTypeMotionEstimationIntelIsReturned) { ASSERT_EQ(sizeof(cl_accelerator_type_intel), sizeof(cl_uint)); result = clGetAcceleratorInfoINTEL( diff --git a/opencl/test/unit_test/api/cl_mem_locally_uncached_resource_tests.cpp b/opencl/test/unit_test/api/cl_mem_locally_uncached_resource_tests.cpp index 26b8939e2e..84a036b27a 100644 --- a/opencl/test/unit_test/api/cl_mem_locally_uncached_resource_tests.cpp +++ b/opencl/test/unit_test/api/cl_mem_locally_uncached_resource_tests.cpp @@ -136,7 +136,7 @@ HWCMDTEST_F(IGFX_GEN8_CORE, clMemLocallyUncachedResourceFixture, GivenAtLeastOne EXPECT_FALSE(kernel->hasUncacheableStatelessArgs()); } -HWCMDTEST_F(IGFX_GEN8_CORE, clMemLocallyUncachedResourceFixture, givenBuffersThatAreUncachedInSurfaceStateWhenStatelessIsProgrammedItIsCached) { +HWCMDTEST_F(IGFX_GEN8_CORE, clMemLocallyUncachedResourceFixture, givenBuffersThatAreUncachedInSurfaceStateWhenStatelessIsProgrammedThenItIsCached) { cl_int retVal = CL_SUCCESS; MockKernelWithInternals mockKernel(*this->pClDevice, context, true); @@ -291,7 +291,7 @@ HWCMDTEST_F(IGFX_GEN8_CORE, clMemLocallyUncachedResourceFixture, givenBuffersTha EXPECT_FALSE(kernel->hasUncacheableStatelessArgs()); } -HWCMDTEST_F(IGFX_GEN8_CORE, clMemLocallyUncachedResourceFixture, WhenUnsettingUncacheableResourceFromKernelThanKernelContinuesToCorrectlySetMocs) { +HWCMDTEST_F(IGFX_GEN8_CORE, clMemLocallyUncachedResourceFixture, WhenUnsettingUncacheableResourceFromKernelThenKernelContinuesToCorrectlySetMocs) { cl_int retVal = CL_SUCCESS; MockKernelWithInternals mockKernel(*this->pClDevice, context, true); auto kernel = mockKernel.mockKernel; diff --git a/opencl/test/unit_test/api/cl_release_event_tests.inl b/opencl/test/unit_test/api/cl_release_event_tests.inl index 7d7dc19ee8..beb399e7a3 100644 --- a/opencl/test/unit_test/api/cl_release_event_tests.inl +++ b/opencl/test/unit_test/api/cl_release_event_tests.inl @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017-2020 Intel Corporation + * Copyright (C) 2017-2021 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -33,7 +33,7 @@ TEST_F(clEventTests, GivenNullEventWhenReleasingEventThenClInvalidEventErrorIsRe EXPECT_EQ(CL_INVALID_EVENT, retVal); } -TEST_F(clEventTests, GivenValidEventWhenReleasingEventTheSuccessIsReturned) { +TEST_F(clEventTests, GivenValidEventWhenReleasingEventThenSuccessIsReturned) { auto *pEvent = new Event(nullptr, 0, 0, 0); ASSERT_NE(nullptr, pEvent);