mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
Related-To: NEO-2388 Change-Id: I4da92efe7f875f409cd62519a31ed4509b55bda7 Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>
22 lines
518 B
C++
22 lines
518 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/gmm_callbacks.h"
|
|
#include "test.h"
|
|
|
|
using namespace NEO;
|
|
|
|
typedef ::testing::Test Gen11GmmCallbacksTests;
|
|
|
|
GEN11TEST_F(Gen11GmmCallbacksTests, notSupportedDeviceCallback) {
|
|
EXPECT_EQ(0, DeviceCallbacks<FamilyType>::notifyAubCapture(nullptr, 0, 0, false));
|
|
}
|
|
|
|
GEN11TEST_F(Gen11GmmCallbacksTests, notSupportedTTCallback) {
|
|
EXPECT_EQ(0, TTCallbacks<FamilyType>::writeL3Address(nullptr, 1, 2));
|
|
}
|