refactor: remove unused file

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
Mateusz Hoppe
2024-07-10 14:35:11 +00:00
committed by Compute-Runtime-Automation
parent b401d83110
commit 19b6f5a258
3 changed files with 2 additions and 19 deletions

View File

@@ -114,6 +114,7 @@ else()
${CMAKE_CURRENT_SOURCE_DIR}/linux/mock_ioctl_helper.h
${CMAKE_CURRENT_SOURCE_DIR}/linux/mock_os_time_linux.h
${CMAKE_CURRENT_SOURCE_DIR}/linux/debug_mock_drm_xe.h
${CMAKE_CURRENT_SOURCE_DIR}/linux/mock_os_context_linux.h
)
endif()
if(WIN32 OR NOT DISABLE_WDDM_LINUX)

View File

@@ -1,5 +1,5 @@
#
# Copyright (C) 2021-2023 Intel Corporation
# Copyright (C) 2021-2024 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
@@ -20,6 +20,4 @@ target_sources(neo_shared_tests PRIVATE
if(WIN32)
target_sources(neo_shared_tests PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/windows/mock_wddm_direct_submission.h)
else()
target_sources(neo_shared_tests PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/linux/mock_os_context_linux.h)
endif()

View File

@@ -1,16 +0,0 @@
/*
* Copyright (C) 2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/os_interface/linux/os_context_linux.h"
class MockOsContextLinux : public NEO::OsContextLinux {
public:
using NEO::OsContextLinux::drmContextIds;
using NEO::OsContextLinux::OsContextLinux;
};