ULT renaming: Enqueue Barrier With Waitlist

Change-Id: Ifa889d08345001371fae4a96854878b0b413deaf
Signed-off-by: Cetnerowski, Adam <adam.cetnerowski@intel.com>
This commit is contained in:
Cetnerowski, Adam
2018-12-19 14:57:20 +01:00
parent d3ac1be3aa
commit c17d0d11d0

View File

@@ -12,7 +12,7 @@ using namespace OCLRT;
typedef api_tests clEnqueueBarrierWithWaitListTests;
TEST_F(clEnqueueBarrierWithWaitListTests, NullCommandQueue_returnsError) {
TEST_F(clEnqueueBarrierWithWaitListTests, GivenNullCommandQueueWhenEnqueuingBarrierWithWaitListThenInvalidCommandQueueErrorIsReturned) {
auto retVal = clEnqueueBarrierWithWaitList(
nullptr,
0,
@@ -21,7 +21,7 @@ TEST_F(clEnqueueBarrierWithWaitListTests, NullCommandQueue_returnsError) {
EXPECT_EQ(CL_INVALID_COMMAND_QUEUE, retVal);
}
TEST_F(clEnqueueBarrierWithWaitListTests, returnsSuccess) {
TEST_F(clEnqueueBarrierWithWaitListTests, GivenValidCommandQueueWhenEnqueuingBarrierWithWaitListThenSuccessIsReturned) {
auto retVal = clEnqueueBarrierWithWaitList(
pCommandQueue,
0,