mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
Related-To: NEO-4338 Change-Id: Ibcdc1b6a1762827337e4ff5364a972702130195a Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
21 lines
447 B
C++
21 lines
447 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/test/unit_test/mocks/mock_io_functions.h"
|
|
|
|
namespace NEO {
|
|
namespace IoFunctions {
|
|
fopenFuncPtr fopenPtr = &mockFopen;
|
|
vfprintfFuncPtr vfprintfPtr = &mockVfptrinf;
|
|
fcloseFuncPtr fclosePtr = &mockFclose;
|
|
|
|
uint32_t mockFopenCalled = 0;
|
|
uint32_t mockVfptrinfCalled = 0;
|
|
uint32_t mockFcloseCalled = 0;
|
|
} // namespace IoFunctions
|
|
} // namespace NEO
|