Files
compute-runtime/unit_tests/api/cl_retain_release_command_queue_tests.inl
Artur Harasimiuk 40146291ad Update copyright headers
Updating files modified in 2018 only. Older files remain with old style
copyright header

Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
2018-09-20 18:02:35 +02:00

54 lines
1.7 KiB
C++

/*
* Copyright (C) 2017-2018 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/context/context.h"
#include "unit_tests/fixtures/device_host_queue_fixture.h"
using namespace OCLRT;
namespace DeviceHostQueue {
typedef ::testing::Types<CommandQueue, DeviceQueue> QueueTypes;
template <typename T>
class clRetainReleaseCommandQueueTests : public DeviceHostQueueFixture<T> {};
TYPED_TEST_CASE(clRetainReleaseCommandQueueTests, QueueTypes);
TYPED_TEST(clRetainReleaseCommandQueueTests, retain_release) {
using BaseType = typename TypeParam::BaseType;
auto queue = this->createClQueue();
ASSERT_EQ(CL_SUCCESS, this->retVal);
auto qObject = castToObject<TypeParam>(static_cast<BaseType *>(queue));
ASSERT_NE(qObject, nullptr);
cl_uint refCount;
this->retVal = clGetCommandQueueInfo(queue, CL_QUEUE_REFERENCE_COUNT,
sizeof(cl_uint), &refCount, NULL);
EXPECT_EQ(CL_SUCCESS, this->retVal);
EXPECT_EQ(1u, refCount);
this->retVal = clRetainCommandQueue(queue);
EXPECT_EQ(CL_SUCCESS, this->retVal);
this->retVal = clGetCommandQueueInfo(queue, CL_QUEUE_REFERENCE_COUNT,
sizeof(cl_uint), &refCount, NULL);
EXPECT_EQ(CL_SUCCESS, this->retVal);
EXPECT_EQ(2u, refCount);
this->retVal = clReleaseCommandQueue(queue);
EXPECT_EQ(CL_SUCCESS, this->retVal);
this->retVal = clGetCommandQueueInfo(queue, CL_QUEUE_REFERENCE_COUNT,
sizeof(cl_uint), &refCount, NULL);
EXPECT_EQ(CL_SUCCESS, this->retVal);
EXPECT_EQ(1u, refCount);
this->retVal = clReleaseCommandQueue(queue);
EXPECT_EQ(CL_SUCCESS, this->retVal);
}
} // namespace DeviceHostQueue