mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: I85f56b677bafdd75dd958b488522393fc18b68af Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
32 lines
663 B
C++
32 lines
663 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "unit_tests/os_interface/hw_info_config_tests.h"
|
|
|
|
#include "runtime/helpers/hw_helper.h"
|
|
#include "runtime/helpers/options.h"
|
|
|
|
using namespace NEO;
|
|
using namespace std;
|
|
|
|
void HwInfoConfigTest::SetUp() {
|
|
PlatformFixture::SetUp();
|
|
|
|
pInHwInfo = pPlatform->getDevice(0)->getHardwareInfo();
|
|
|
|
testPlatform = &pInHwInfo.platform;
|
|
testSkuTable = &pInHwInfo.featureTable;
|
|
testWaTable = &pInHwInfo.workaroundTable;
|
|
testSysInfo = &pInHwInfo.gtSystemInfo;
|
|
|
|
outHwInfo = {};
|
|
}
|
|
|
|
void HwInfoConfigTest::TearDown() {
|
|
PlatformFixture::TearDown();
|
|
}
|