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;
|
typedef api_tests clEnqueueBarrierWithWaitListTests;
|
||||||
|
|
||||||
TEST_F(clEnqueueBarrierWithWaitListTests, NullCommandQueue_returnsError) {
|
TEST_F(clEnqueueBarrierWithWaitListTests, GivenNullCommandQueueWhenEnqueuingBarrierWithWaitListThenInvalidCommandQueueErrorIsReturned) {
|
||||||
auto retVal = clEnqueueBarrierWithWaitList(
|
auto retVal = clEnqueueBarrierWithWaitList(
|
||||||
nullptr,
|
nullptr,
|
||||||
0,
|
0,
|
||||||
|
@ -21,7 +21,7 @@ TEST_F(clEnqueueBarrierWithWaitListTests, NullCommandQueue_returnsError) {
|
||||||
EXPECT_EQ(CL_INVALID_COMMAND_QUEUE, retVal);
|
EXPECT_EQ(CL_INVALID_COMMAND_QUEUE, retVal);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_F(clEnqueueBarrierWithWaitListTests, returnsSuccess) {
|
TEST_F(clEnqueueBarrierWithWaitListTests, GivenValidCommandQueueWhenEnqueuingBarrierWithWaitListThenSuccessIsReturned) {
|
||||||
auto retVal = clEnqueueBarrierWithWaitList(
|
auto retVal = clEnqueueBarrierWithWaitList(
|
||||||
pCommandQueue,
|
pCommandQueue,
|
||||||
0,
|
0,
|
||||||
|
|
Loading…
Reference in New Issue