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
|
|
|
*
|
2019-02-27 18:39:32 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "runtime/device/device.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
#include "test.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
#include "unit_tests/fixtures/platform_fixture.h"
|
|
|
|
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
using namespace NEO;
|
2017-12-21 07:45:38 +08:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
struct HwInfoConfigTest : public ::testing::Test,
|
|
|
|
public PlatformFixture {
|
|
|
|
void SetUp() override;
|
|
|
|
void TearDown() override;
|
|
|
|
|
2019-05-06 18:33:44 +08:00
|
|
|
HardwareInfo pInHwInfo;
|
2017-12-21 07:45:38 +08:00
|
|
|
HardwareInfo outHwInfo;
|
|
|
|
|
2019-05-06 18:33:44 +08:00
|
|
|
PLATFORM *testPlatform = nullptr;
|
|
|
|
FeatureTable *testSkuTable = nullptr;
|
|
|
|
WorkaroundTable *testWaTable = nullptr;
|
|
|
|
GT_SYSTEM_INFO *testSysInfo = nullptr;
|
2017-12-21 07:45:38 +08:00
|
|
|
};
|