diff options
author | Anna Zaks <ganna@apple.com> | 2015-10-27 23:15:05 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2015-10-27 23:15:05 +0000 |
commit | 55fbb6d7f53c543ffe803bbed6f0c441911287d2 (patch) | |
tree | 00c7745b6fa5474bedcd33c51c7111b6e302686c /compiler-rt/lib/asan/tests/asan_test_main.cc | |
parent | 6c583b8b25e2bd9aad5e0420c297190608d3dc41 (diff) | |
download | bcm5719-llvm-55fbb6d7f53c543ffe803bbed6f0c441911287d2.tar.gz bcm5719-llvm-55fbb6d7f53c543ffe803bbed6f0c441911287d2.zip |
Revert "[asan] On OS X, log reports to syslog and os_trace"
This reverts commit 251447.
(Which caused failures on a Linux bot.)
llvm-svn: 251467
Diffstat (limited to 'compiler-rt/lib/asan/tests/asan_test_main.cc')
-rw-r--r-- | compiler-rt/lib/asan/tests/asan_test_main.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler-rt/lib/asan/tests/asan_test_main.cc b/compiler-rt/lib/asan/tests/asan_test_main.cc index cdaf801d914..5958cb8a065 100644 --- a/compiler-rt/lib/asan/tests/asan_test_main.cc +++ b/compiler-rt/lib/asan/tests/asan_test_main.cc @@ -19,8 +19,7 @@ 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'. - // Also, make sure we do not overwhelm the syslog while testing. - return "symbolize=false:abort_on_error=0:log_to_syslog=0"; + return "symbolize=false:abort_on_error=0"; #else return "symbolize=false"; #endif |