2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2019-02-27 18:39:32 +08:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-10-16 17:58:36 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "runtime/helpers/hw_info.h"
|
|
|
|
#include "runtime/os_interface/os_library.h"
|
|
|
|
#include "unit_tests/mocks/mock_compilers.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
using namespace NEO;
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2019-03-15 18:09:06 +08:00
|
|
|
OsLibrary *setAdapterInfo(const PLATFORM *platform, const GT_SYSTEM_INFO *gtSystemInfo, uint64_t gpuAddressSpace);
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
class TestEnvironment : public ::testing::Environment {
|
|
|
|
public:
|
|
|
|
TestEnvironment();
|
|
|
|
|
|
|
|
virtual void SetUp() override;
|
|
|
|
|
|
|
|
virtual void TearDown() override;
|
|
|
|
|
|
|
|
virtual void fclPushDebugVars(
|
|
|
|
MockCompilerDebugVars &newDebugVars);
|
|
|
|
|
|
|
|
virtual void fclPopDebugVars();
|
|
|
|
|
|
|
|
virtual void igcPushDebugVars(
|
|
|
|
MockCompilerDebugVars &newDebugVars);
|
|
|
|
|
|
|
|
virtual void igcPopDebugVars();
|
|
|
|
|
|
|
|
virtual void setDefaultDebugVars(
|
|
|
|
MockCompilerDebugVars &fclDefaults,
|
|
|
|
MockCompilerDebugVars &igcDefaults,
|
|
|
|
HardwareInfo &hwInfo);
|
|
|
|
|
|
|
|
virtual void setMockFileNames(
|
|
|
|
std::string &fclMockFile,
|
|
|
|
std::string &igcMockFile);
|
|
|
|
|
|
|
|
virtual std::string &fclGetMockFile();
|
|
|
|
virtual std::string &igcGetMockFile();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
OsLibrary *libraryFrontEnd;
|
|
|
|
OsLibrary *libraryIGC;
|
|
|
|
OsLibrary *libraryOS;
|
|
|
|
|
|
|
|
std::vector<MockCompilerDebugVars> igcDebugVarStack;
|
|
|
|
std::vector<MockCompilerDebugVars> fclDebugVarStack;
|
|
|
|
|
|
|
|
void (*igcSetDebugVarsFPtr)(MockCompilerDebugVars &debugVars);
|
|
|
|
void (*fclSetDebugVarsFptr)(MockCompilerDebugVars &debugVars);
|
|
|
|
|
|
|
|
MockCompilerDebugVars fclDefaultDebugVars;
|
|
|
|
MockCompilerDebugVars igcDefaultDebugVars;
|
2018-10-16 17:58:36 +08:00
|
|
|
HardwareInfo hwInfoDefaultDebugVars;
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
std::string fclMockFile;
|
|
|
|
std::string igcMockFile;
|
|
|
|
|
|
|
|
MockCompilerEnableGuard mockCompilerGuard;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern TestEnvironment *gEnvironment;
|