Files
compute-runtime/opencl/test/unit_test/api/cl_unload_compiler_tests.inl
Filip Hazubski fe5bda3ed1 Correct API functions to unload compiler
Correct return value of clUnloadCompiler and clUnloadPlatformCompiler
API calls.

Change-Id: I352b271e9f97be88cf29c4a097aa2e664ba3206a
Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
2020-08-10 17:18:26 +02:00

20 lines
318 B
C++

/*
* Copyright (C) 2017-2020 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