Files
compute-runtime/unit_tests/os_interface/hw_info_config_tests.h
Filip Hazubski d023d9ff02 Move core device objects to core
Change-Id: Iab6f00ea5cf2595cebc34c18286a6900b90aef92
Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
2020-02-07 14:35:14 +01:00

32 lines
661 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "core/device/device.h"
#include "test.h"
#include "unit_tests/fixtures/platform_fixture.h"
#include "gtest/gtest.h"
using namespace NEO;
using namespace std;
struct HwInfoConfigTest : public ::testing::Test,
public PlatformFixture {
void SetUp() override;
void TearDown() override;
HardwareInfo pInHwInfo;
HardwareInfo outHwInfo;
PLATFORM *testPlatform = nullptr;
FeatureTable *testSkuTable = nullptr;
WorkaroundTable *testWaTable = nullptr;
GT_SYSTEM_INFO *testSysInfo = nullptr;
};