Files
compute-runtime/unit_tests/api/cl_unload_compiler_tests.inl
Adam Cetnerowski 54d23b925d ULT renaming: Unload compiler tests
Related-To: NEO-2236

Change-Id: Ibc45cd114fcfc5c1792267ae4215c69c9b66b1f3
Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
2019-08-08 09:10:51 +02:00

21 lines
393 B
C++

/*
* Copyright (C) 2017-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "cl_api_tests.h"
using namespace NEO;
typedef api_tests clUnloadCompilerTests;
namespace ULT {
TEST_F(clUnloadCompilerTests, WhenUnloadingCompilerThenOutOfHostMemoryErrorIsReturned) {
auto retVal = clUnloadCompiler();
EXPECT_EQ(CL_OUT_OF_HOST_MEMORY, retVal);
}
} // namespace ULT