2019-03-22 20:40:41 +08:00
|
|
|
/*
|
2020-02-22 16:28:27 +08:00
|
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
2019-03-22 20:40:41 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "test.h"
|
|
|
|
|
2020-02-22 16:28:27 +08:00
|
|
|
#include "api/additional_extensions.h"
|
|
|
|
|
2019-03-22 20:40:41 +08:00
|
|
|
using namespace NEO;
|
|
|
|
|
|
|
|
TEST(AdditionalExtension, GivenFuncNameWhenGetingFunctionAddressThenReturnNullptr) {
|
|
|
|
auto address = getAdditionalExtensionFunctionAddress("clFunction");
|
|
|
|
EXPECT_EQ(nullptr, address);
|
|
|
|
}
|