compute-runtime/unit_tests/os_interface/windows/gmm_memory_tests.cpp

26 lines
632 B
C++
Raw Normal View History

/*
* Copyright (C) 2018-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/gmm_helper/gmm_helper.h"
#include "runtime/helpers/options.h"
#include "gmm_client_context.h"
#include "gmm_memory.h"
#include "gtest/gtest.h"
using namespace NEO;
class PublicGmmMemory : public GmmMemory {
public:
using GmmMemory::clientContext;
};
TEST(GmmMemoryTest, givenGmmHelperWhenCreateGmmMemoryThenItHasClientContextFromGmmHelper) {
ASSERT_NE(nullptr, GmmHelper::getClientContext());
PublicGmmMemory gmmMemory;
EXPECT_EQ(gmmMemory.clientContext, GmmHelper::getClientContext()->getHandle());
}