ULT renaming: ClCompileProgram tests
Change-Id: I146a2f25c951824d644f938ace4e434c432c4256 Signed-off-by: Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
parent
69367ec4e7
commit
bcceab5629
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue