ULT renaming: ClCompileProgram tests

Change-Id: I146a2f25c951824d644f938ace4e434c432c4256
Signed-off-by: Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
Cetnerowski 2018-09-12 06:33:37 -07:00 committed by sys_ocldev
parent 69367ec4e7
commit bcceab5629
1 changed files with 3 additions and 3 deletions

View File

@ -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,