20 lines
318 B
C++
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
|