From 38ff5064b33ccb86c5b0d0145c981ffefe55d7eb Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 2 Aug 2019 14:29:53 +0200 Subject: Tests: don't fail on leaks detected by leak sanitizer These often happen in external libraries that we can't fix. The leaks are still printed in the logs. --- tests/python/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/python') diff --git a/tests/python/CMakeLists.txt b/tests/python/CMakeLists.txt index 1e006ca611c..0d64aca3c1d 100644 --- a/tests/python/CMakeLists.txt +++ b/tests/python/CMakeLists.txt @@ -51,6 +51,10 @@ function(add_blender_test name) NAME ${name} COMMAND "$" ${TEST_BLENDER_EXE_PARAMS} ${ARGN} ) + + # Don't fail tests on leaks since these often happen in external libraries + # that we can't fix. + set_tests_properties(${name} PROPERTIES ENVIRONMENT LSAN_OPTIONS="exitcode=0") endfunction() # Run Python script outside Blender. -- cgit v1.2.3