summaryrefslogtreecommitdiff
path: root/lib/asan/tests/asan_test_main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/asan/tests/asan_test_main.cc')
-rw-r--r--lib/asan/tests/asan_test_main.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/asan/tests/asan_test_main.cc b/lib/asan/tests/asan_test_main.cc
index 5958cb8a0..cdaf801d9 100644
--- a/lib/asan/tests/asan_test_main.cc
+++ b/lib/asan/tests/asan_test_main.cc
@@ -19,7 +19,8 @@ extern "C" const char* __asan_default_options() {
#if SANITIZER_MAC
// 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'.
- return "symbolize=false:abort_on_error=0";
+ // Also, make sure we do not overwhelm the syslog while testing.
+ return "symbolize=false:abort_on_error=0:log_to_syslog=0";
#else
return "symbolize=false";
#endif