compute-runtime/opencl/test/unit_test/api/cl_unload_compiler_tests.inl

20 lines
318 B
C++

/*
* Copyright (C) 2018-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "test.h"
using namespace NEO;
namespace ULT {
TEST(clUnloadCompilerTests, WhenUnloadingCompilerThenSuccessIsReturned) {
auto retVal = clUnloadCompiler();
EXPECT_EQ(CL_SUCCESS, retVal);
}
} // namespace ULT