ULT renaming: Get Program Info tests

Related-To: NEO-2236

Change-Id: I0c90a3003e750c6d51211bbc0a25a29bf6a29909
Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
Adam Cetnerowski
2020-09-30 09:49:29 +02:00
committed by sys_ocldev
parent 76501a2921
commit a67544f479

View File

@ -22,7 +22,7 @@ typedef api_tests clGetProgramInfoTests;
namespace ULT {
TEST_F(clGetProgramInfoTests, SuccessfulProgramWithSource) {
TEST_F(clGetProgramInfoTests, GivenSourceWhenBuildingProgramThenGetProgramInfoReturnsCorrectInfo) {
cl_program pProgram = nullptr;
std::unique_ptr<char[]> pSource = nullptr;
size_t sourceSize = 0;
@ -97,7 +97,7 @@ TEST_F(clGetProgramInfoTests, SuccessfulProgramWithSource) {
EXPECT_EQ(CL_SUCCESS, retVal);
}
TEST_F(clGetProgramInfoTests, SuccessfulProgramWithIL) {
TEST_F(clGetProgramInfoTests, GivenIlWhenBuildingProgramThenGetProgramInfoReturnsCorrectInfo) {
REQUIRE_OCL_21_OR_SKIP(pContext);
const size_t binarySize = 16;
const uint32_t spirv[binarySize] = {0x03022307};