2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "unit_tests/fixtures/device_fixture.h"
|
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
using namespace OCLRT;
|
|
|
|
|
|
|
|
typedef Test<DeviceFixture> Gen9OnlyTest;
|
|
|
|
|
|
|
|
GEN9TEST_F(Gen9OnlyTest, shouldPassOnGen9) {
|
|
|
|
EXPECT_EQ(IGFX_GEN9_CORE, pDevice->getRenderCoreFamily());
|
|
|
|
}
|