2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2022-06-29 19:17:47 +00:00
|
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2022-10-28 13:51:20 +00:00
|
|
|
#include "shared/test/common/helpers/default_hw_info.h"
|
2022-06-29 19:17:47 +00:00
|
|
|
#include "shared/test/common/test_macros/header/per_product_test_definitions.h"
|
2022-10-28 13:51:20 +00:00
|
|
|
#include "shared/test/common/test_macros/hw_test.h"
|
2020-02-22 22:50:57 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
using namespace NEO;
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2022-10-28 13:51:20 +00:00
|
|
|
using Gen9OnlyTest = ::testing::Test;
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2020-10-26 10:56:05 +01:00
|
|
|
GEN9TEST_F(Gen9OnlyTest, WhenGettingRenderCoreFamilyThenGen9CoreIsReturned) {
|
2022-10-28 13:51:20 +00:00
|
|
|
EXPECT_EQ(IGFX_GEN9_CORE, defaultHwInfo->platform.eRenderCoreFamily);
|
2017-12-21 00:45:38 +01:00
|
|
|
}
|