From dc478aa94da612505fddeca86d65196632bdf40b Mon Sep 17 00:00:00 2001 From: vWX1261251 Date: Fri, 7 Jun 2024 15:14:04 +0300 Subject: [PATCH] [compiler-rt] added new value for config.default_sanitizer_opts Issue number: I9W36I Signed-off-by: verkinamaria Signed-off-by: vWX1261251 --- compiler-rt/test/lit.common.cfg.py | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/test/lit.common.cfg.py b/compiler-rt/test/lit.common.cfg.py index 869d0e233ef3..6d1a519d053e 100644 --- a/compiler-rt/test/lit.common.cfg.py +++ b/compiler-rt/test/lit.common.cfg.py @@ -728,6 +728,7 @@ if config.host_os == 'Darwin': lit_config.warning('log command not found. Some tests will be skipped.') elif config.android or is_ohos_family_mobile(): config.default_sanitizer_opts += ['abort_on_error=0'] + config.default_sanitizer_opts += ['log_to_syslog=0'] # Allow tests to use REQUIRES=stable-runtime. For use when you cannot use XFAIL # because the test hangs or fails on one configuration and not the other. -- Gitee