mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00
18 lines
409 B
C++
18 lines
409 B
C++
/*
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/test/common/test_macros/test.h"
|
|
|
|
#include "opencl/source/api/additional_extensions.h"
|
|
|
|
using namespace NEO;
|
|
|
|
TEST(AdditionalExtension, GivenFuncNameWhenGetingFunctionAddressThenReturnNullptr) {
|
|
auto address = getAdditionalExtensionFunctionAddress("clFunction");
|
|
EXPECT_EQ(nullptr, address);
|
|
}
|