1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/helpers/ptr_math.h"
#include "opencl/source/command_queue/command_queue.h"
#include "cl_api_tests.h"
using namespace NEO;
typedef api_tests clEnqueueWriteBufferTests;
namespace ULT {
TEST_F(clEnqueueWriteBufferTests, GivenNullCommandQueueWhenWritingBufferThenInvalidCommandQueueErrorIsReturned) {
auto buffer = (cl_mem)ptrGarbage;
retVal = clEnqueueWriteBuffer(
nullptr,
buffer,
CL_FALSE, //blocking write
0, //offset
0, //sb
nullptr,
0, //numEventsInWaitList
nullptr,
nullptr);
EXPECT_EQ(CL_INVALID_COMMAND_QUEUE, retVal);
}
TEST_F(clEnqueueWriteBufferTests, GivenNullBufferWhenWritingBufferThenInvalidMemObjectErrorIsReturned) {
void *ptr = nullptr;
retVal = clEnqueueWriteBuffer(
pCommandQueue,
nullptr,
CL_FALSE, //blocking write
0, //offset
0, //cb
ptr,
0,
nullptr,
nullptr);
EXPECT_EQ(CL_INVALID_MEM_OBJECT, retVal);
}
} // namespace ULT
|