Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-02 17:09:59 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-02 18:25:25 +0300
commit256c412b316755a9d6c0ad94b3e3139b27a27476 (patch)
treec0b85af1742f64764a3bf14ca415c75794bd2b9f /tests
parent5ba070ce53beee2031f4baa5e5f216daba8def51 (diff)
Tests: also don't fail on memory leaks for gtests
Diffstat (limited to 'tests')
-rw-r--r--tests/python/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/python/CMakeLists.txt b/tests/python/CMakeLists.txt
index 44bdce954b1..4793010885e 100644
--- a/tests/python/CMakeLists.txt
+++ b/tests/python/CMakeLists.txt
@@ -54,7 +54,7 @@ function(add_blender_test testname)
# Don't fail tests on leaks since these often happen in external libraries
# that we can't fix.
- set_tests_properties(${testname} PROPERTIES ENVIRONMENT LSAN_OPTIONS="exitcode=0")
+ set_tests_properties(${testname} PROPERTIES ENVIRONMENT LSAN_OPTIONS=exitcode=0)
endfunction()
# Run Python script outside Blender.
@@ -73,7 +73,7 @@ function(add_python_test testname testscript)
)
endif()
- set_tests_properties(${testname} PROPERTIES ENVIRONMENT LSAN_OPTIONS="exitcode=0")
+ set_tests_properties(${testname} PROPERTIES ENVIRONMENT LSAN_OPTIONS=exitcode=0)
endfunction()
# ------------------------------------------------------------------------------