Files
compute-runtime/unit_tests/gen8/linux/drm_mapper_tests_gen8.cpp
Artur Harasimiuk 40146291ad Update copyright headers
Updating files modified in 2018 only. Older files remain with old style
copyright header

Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
2018-09-20 18:02:35 +02:00

35 lines
925 B
C++

/*
* Copyright (C) 2017-2018 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "drm/i915_drm.h"
#include "runtime/os_interface/linux/drm_engine_mapper.h"
#include "unit_tests/helpers/gtest_helpers.h"
#include "test.h"
#include "hw_cmds.h"
using namespace OCLRT;
using namespace std;
struct DrmMapperTestsGen8 : public ::testing::Test {
void SetUp() override {}
void TearDown() override {}
};
GEN8TEST_F(DrmMapperTestsGen8, engineNodeMapPass) {
unsigned int flag = I915_EXEC_RING_MASK;
unsigned int expected = I915_EXEC_RENDER;
bool ret = DrmEngineMapper<BDWFamily>::engineNodeMap(EngineType::ENGINE_RCS, flag);
EXPECT_TRUE(ret);
EXPECT_EQ(expected, flag);
}
GEN8TEST_F(DrmMapperTestsGen8, engineNodeMapNegative) {
unsigned int flag = I915_EXEC_RING_MASK;
bool ret = DrmEngineMapper<BDWFamily>::engineNodeMap(EngineType::ENGINE_BCS, flag);
EXPECT_FALSE(ret);
}