mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Remove not used method
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
514b191bb6
commit
949137e068
@ -164,15 +164,6 @@ CFLTEST_F(HwInfoConfigTestLinuxCfl, configureHwInfoEdram) {
|
||||
EXPECT_EQ(1u, outHwInfo.featureTable.ftrEDram);
|
||||
}
|
||||
|
||||
CFLTEST_F(HwInfoConfigTestLinuxCfl, whenCallAdjustPlatformThenDoNothing) {
|
||||
auto hwInfoConfig = HwInfoConfig::get(productFamily);
|
||||
outHwInfo = pInHwInfo;
|
||||
hwInfoConfig->adjustPlatformForProductFamily(&outHwInfo);
|
||||
|
||||
int ret = memcmp(&outHwInfo.platform, &pInHwInfo.platform, sizeof(PLATFORM));
|
||||
EXPECT_EQ(0, ret);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
class CflHwInfoTests : public ::testing::Test {
|
||||
};
|
||||
|
@ -7,7 +7,6 @@
|
||||
set(IGDRCL_SRCS_tests_gen9_cfl_windows
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/test_device_caps_cfl_windows.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hw_info_config_tests_cfl.cpp
|
||||
)
|
||||
|
||||
if(WIN32)
|
||||
|
@ -1,24 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2020 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/os_interface/windows/os_interface.h"
|
||||
|
||||
#include "opencl/test/unit_test/os_interface/windows/hw_info_config_win_tests.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
using HwInfoConfigTestWindowsCfl = HwInfoConfigTestWindows;
|
||||
|
||||
CFLTEST_F(HwInfoConfigTestWindowsCfl, whenCallAdjustPlatformThenDoNothing) {
|
||||
EXPECT_EQ(IGFX_COFFEELAKE, productFamily);
|
||||
auto hwInfoConfig = HwInfoConfig::get(productFamily);
|
||||
outHwInfo = pInHwInfo;
|
||||
hwInfoConfig->adjustPlatformForProductFamily(&outHwInfo);
|
||||
|
||||
int ret = memcmp(&outHwInfo.platform, &pInHwInfo.platform, sizeof(PLATFORM));
|
||||
EXPECT_EQ(0, ret);
|
||||
}
|
Reference in New Issue
Block a user