ULT renaming: get device id tests

Change-Id: Ied671060d99649d4915ca0acd9cea28aedc8e8d7
Signed-off-by: Cetnerowski, Adam <adam.cetnerowski@intel.com>
This commit is contained in:
Cetnerowski, Adam
2019-03-05 21:38:31 +01:00
committed by sys_ocldev
parent 03527f496d
commit fe07ede28d

View File

@ -17,7 +17,7 @@ typedef api_tests clGetDeviceIDsTests;
namespace ULT {
TEST_F(clGetDeviceIDsTests, NumDevices) {
TEST_F(clGetDeviceIDsTests, GivenZeroNumEntriesWhenGettingDeviceIdsThenNumberOfDevicesIsGreaterThanZero) {
cl_uint numDevices = 0;
retVal = clGetDeviceIDs(pPlatform, CL_DEVICE_TYPE_GPU, 0, nullptr, &numDevices);
@ -26,7 +26,7 @@ TEST_F(clGetDeviceIDsTests, NumDevices) {
EXPECT_GT(numDevices, (cl_uint)0);
}
TEST_F(clGetDeviceIDsTests, DeviceIDs) {
TEST_F(clGetDeviceIDsTests, GivenNonNullDevicesWhenGettingDeviceIdsThenDeviceIdIsReturned) {
cl_uint numEntries = 1;
cl_device_id pDevices[1];
@ -34,7 +34,7 @@ TEST_F(clGetDeviceIDsTests, DeviceIDs) {
EXPECT_EQ(CL_SUCCESS, retVal);
}
TEST_F(clGetDeviceIDsTests, nullPlatform) {
TEST_F(clGetDeviceIDsTests, GivenNullPlatformWhenGettingDeviceIdsThenDeviceIdIsReturned) {
cl_uint numEntries = 1;
cl_device_id pDevices[1];
@ -42,7 +42,7 @@ TEST_F(clGetDeviceIDsTests, nullPlatform) {
EXPECT_EQ(CL_SUCCESS, retVal);
}
TEST_F(clGetDeviceIDsTests, invalidDeviceType) {
TEST_F(clGetDeviceIDsTests, GivenInvalidDeviceTypeWhenGettingDeviceIdsThenInvalidDeivceTypeErrorIsReturned) {
cl_uint numEntries = 1;
cl_device_id pDevices[1];
@ -50,14 +50,14 @@ TEST_F(clGetDeviceIDsTests, invalidDeviceType) {
EXPECT_EQ(CL_INVALID_DEVICE_TYPE, retVal);
}
TEST_F(clGetDeviceIDsTests, invalidVal) {
TEST_F(clGetDeviceIDsTests, GivenZeroNumEntriesAndNonNullDevicesWhenGettingDeviceIdsThenInvalidValueErrorIsReturned) {
cl_device_id pDevices[1];
retVal = clGetDeviceIDs(pPlatform, CL_DEVICE_TYPE_GPU, 0, pDevices, nullptr);
EXPECT_EQ(CL_INVALID_VALUE, retVal);
}
TEST_F(clGetDeviceIDsTests, invalidPlatform) {
TEST_F(clGetDeviceIDsTests, GivenInvalidPlatformWhenGettingDeviceIdsThenInvalidPlatformErrorIsReturned) {
cl_uint numEntries = 1;
cl_device_id pDevices[1];
uint32_t trash[6] = {0xdeadbeef, 0xdeadbeef, 0xdeadbeef, 0xdeadbeef, 0xdeadbeef, 0xdeadbeef};
@ -67,7 +67,7 @@ TEST_F(clGetDeviceIDsTests, invalidPlatform) {
EXPECT_EQ(CL_INVALID_PLATFORM, retVal);
}
TEST_F(clGetDeviceIDsTests, devTypeAll) {
TEST_F(clGetDeviceIDsTests, GivenDeviceTypeAllWhenGettingDeviceIdsThenDeviceIdIsReturned) {
cl_uint numDevices = 0;
cl_uint numEntries = 1;
cl_device_id pDevices[1];
@ -77,7 +77,7 @@ TEST_F(clGetDeviceIDsTests, devTypeAll) {
EXPECT_GT(numDevices, (cl_uint)0);
}
TEST_F(clGetDeviceIDsTests, devTypeDefault) {
TEST_F(clGetDeviceIDsTests, GivenDeviceTypeDefaultWhenGettingDeviceIdsThenDeviceIdIsReturned) {
cl_uint numDevices = 0;
cl_uint numEntries = 1;
cl_device_id pDevices[1];
@ -87,7 +87,7 @@ TEST_F(clGetDeviceIDsTests, devTypeDefault) {
EXPECT_GT(numDevices, (cl_uint)0);
}
TEST_F(clGetDeviceIDsTests, cpuDevices) {
TEST_F(clGetDeviceIDsTests, GivenDeviceTypeCpuWhenGettingDeviceIdsThenDeviceNotFoundErrorIsReturned) {
cl_uint numDevices = 0;
retVal = clGetDeviceIDs(pPlatform, CL_DEVICE_TYPE_CPU, 0, nullptr, &numDevices);