/* * 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