/* * Copyright (C) 2017-2018 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "cl_api_tests.h" #include "runtime/command_queue/command_queue.h" using namespace OCLRT; typedef api_tests clFinishTests; namespace ULT { TEST_F(clFinishTests, returnsSuccess) { retVal = clFinish(pCommandQueue); EXPECT_EQ(CL_SUCCESS, retVal); } TEST_F(clFinishTests, NullCommandQueuereturnsError) { auto retVal = clFinish(nullptr); EXPECT_EQ(CL_INVALID_COMMAND_QUEUE, retVal); } } // namespace ULT