diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/test-pre.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/test-pre.sh b/test/test-pre.sh index e3393962..fc14ee0b 100755 --- a/test/test-pre.sh +++ b/test/test-pre.sh @@ -93,7 +93,13 @@ unset LD_PRELOAD rm -rf in in2 out -export ASAN_OPTIONS=detect_leaks=0:allocator_may_return_null=1:abort_on_error=1:symbolize=0 +test -z "$TRAVIS_OS_NAME" && { + export ASAN_OPTIONS=detect_leaks=0:allocator_may_return_null=1:abort_on_error=1:symbolize=0 +} +test -n "$TRAVIS_OS_NAME" && { + export ASAN_OPTIONS=detect_leaks=0:allocator_may_return_null=1:abort_on_error=1:symbolize=1 +} + export AFL_LLVM_INSTRUMENT=AFL # on OpenBSD we need to work with llvm from /usr/local/bin |