summaryrefslogtreecommitdiff
path: root/test/asan/lit.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/lit.cfg')
-rw-r--r--test/asan/lit.cfg2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/asan/lit.cfg b/test/asan/lit.cfg
index fd99f6699..835547090 100644
--- a/test/asan/lit.cfg
+++ b/test/asan/lit.cfg
@@ -34,7 +34,9 @@ default_asan_opts = ''
if config.host_os == 'Darwin':
# On Darwin, we default to `abort_on_error=1`, which would make tests run
# much slower. Let's override this and run lit tests with 'abort_on_error=0'.
+ # Also, make sure we do not overwhelm the syslog while testing.
default_asan_opts = 'abort_on_error=0'
+ default_asan_opts += ':log_to_syslog=0'
if default_asan_opts:
config.environment['ASAN_OPTIONS'] = default_asan_opts
default_asan_opts += ':'