ULT renaming: Enqueue Barrier With Waitlist
Change-Id: Ifa889d08345001371fae4a96854878b0b413deaf Signed-off-by: Cetnerowski, Adam <adam.cetnerowski@intel.com>
This commit is contained in:
parent
d3ac1be3aa
commit
c17d0d11d0
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue