From bcceab5629b503d24542ce27b8f7d03cee7d67b3 Mon Sep 17 00:00:00 2001 From: Cetnerowski Date: Wed, 12 Sep 2018 06:33:37 -0700 Subject: [PATCH] ULT renaming: ClCompileProgram tests Change-Id: I146a2f25c951824d644f938ace4e434c432c4256 Signed-off-by: Cetnerowski --- unit_tests/api/cl_compile_program_tests.inl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/unit_tests/api/cl_compile_program_tests.inl b/unit_tests/api/cl_compile_program_tests.inl index f6c453e5fa..dae1bc55d8 100644 --- a/unit_tests/api/cl_compile_program_tests.inl +++ b/unit_tests/api/cl_compile_program_tests.inl @@ -35,7 +35,7 @@ typedef api_tests clCompileProgramTests; namespace ULT { -TEST_F(clCompileProgramTests, CompileSingleSource) { +TEST_F(clCompileProgramTests, GivenKernelAsSingleSourceWhenCompilingProgramThenSuccessIsReturned) { cl_program pProgram = nullptr; void *pSource = nullptr; size_t sourceSize = 0; @@ -82,7 +82,7 @@ TEST_F(clCompileProgramTests, CompileSingleSource) { CompilerInterface::shutdown(); } -TEST_F(clCompileProgramTests, CompileSingleSourceWithHeader) { +TEST_F(clCompileProgramTests, GivenKernelAsSourceWithHeaderWhenCompilingProgramThenSuccessIsReturned) { cl_program pProgram = nullptr; cl_program pHeader = nullptr; void *pSource = nullptr; @@ -155,7 +155,7 @@ TEST_F(clCompileProgramTests, CompileSingleSourceWithHeader) { CompilerInterface::shutdown(); } -TEST_F(clCompileProgramTests, NullProgram_returnsError) { +TEST_F(clCompileProgramTests, GivenNullProgramWhenCompilingProgramThenInvalidProgramErrorIsReturned) { retVal = clCompileProgram( nullptr, 1,