mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 18:37:46 +08:00
unit_test/helpers/debug_helpers.cpp -> common/helpers unit_test/page_fault_manager/default_asan_options.cpp -> common/page_fault_manag unit_test/utilities/cpuintrinsics.cpp -> common/utilities unit_test/memory_manager/deferred_deleter_mt_tests.cpp -> opencl/test/unit_test/ delete: unit_test/mocks/debugger_l0_create.cpp delete: unit_test/page_fault_manager/default_asan_options.cpp Related-To: NEO-6524 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
12 lines
227 B
C++
12 lines
227 B
C++
/*
|
|
* Copyright (C) 2019-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
extern "C" {
|
|
const char *__asan_default_options() { // NOLINT(readability-identifier-naming0
|
|
return "allow_user_segv_handler=1";
|
|
}
|
|
} |