Files
compute-runtime/opencl/test/unit_test/api/cl_flush_tests.inl
Fabian Zwolinski 2022592f3d Apply CamelCase for class and struct names 2/2
Additionally change .clang-tidy not to ignore struct names.

Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com>
2023-04-25 13:10:23 +02:00

28 lines
602 B
C++

/*
* Copyright (C) 2018-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "opencl/source/command_queue/command_queue.h"
#include "cl_api_tests.h"
using namespace NEO;
using ClFlushTests = ApiTests;
namespace ULT {
TEST_F(ClFlushTests, GivenValidCommandQueueWhenFlushingThenSuccessIsReturned) {
retVal = clFlush(pCommandQueue);
EXPECT_EQ(CL_SUCCESS, retVal);
}
TEST_F(ClFlushTests, GivenNullCommandQueueWhenFlushingThenInvalidCommandQueueErrorIsReturned) {
auto retVal = clFlush(nullptr);
EXPECT_EQ(CL_INVALID_COMMAND_QUEUE, retVal);
}
} // namespace ULT