27 lines
665 B
C++
27 lines
665 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/offline_compiler/source/ocloc_arg_helper.h"
|
|
#include "shared/offline_compiler/source/ocloc_fatbinary.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace NEO {
|
|
class OclocFatBinaryGetTargetPlatformsForFatbinary : public ::testing::Test {
|
|
public:
|
|
OclocFatBinaryGetTargetPlatformsForFatbinary() {
|
|
oclocArgHelperWithoutInput = std::make_unique<OclocArgHelper>();
|
|
oclocArgHelperWithoutInput->getPrinterRef() = MessagePrinter{true};
|
|
}
|
|
std::unique_ptr<OclocArgHelper> oclocArgHelperWithoutInput;
|
|
};
|
|
} // namespace NEO
|