aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-05-12 09:44:41 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-05-12 09:44:41 -0700
commit6efa6eb5b35ca660651c78b03243366908a9d187 (patch)
tree321b34ea3e6f7400af1a980f4eb21c48201a2f11 /tools/run_tests/run_tests.py
parent1b6b2121432caa320ed51df620f39c1f711129e3 (diff)
Allow running ASAN without leak checking
Diffstat (limited to 'tools/run_tests/run_tests.py')
-rwxr-xr-xtools/run_tests/run_tests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 50fdec7f5f..de6972baff 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -286,6 +286,8 @@ _CONFIGS = {
'ubsan': SimpleConfig('ubsan'),
'asan': SimpleConfig('asan', environ={
'ASAN_OPTIONS': 'detect_leaks=1:color=always:suppressions=tools/tsan_suppressions.txt'}),
+ 'asan-noleaks': SimpleConfig('asan', environ={
+ 'ASAN_OPTIONS': 'detect_leaks=0:color=always:suppressions=tools/tsan_suppressions.txt'}),
'gcov': SimpleConfig('gcov'),
'memcheck': ValgrindConfig('valgrind', 'memcheck', ['--leak-check=full']),
'helgrind': ValgrindConfig('dbg', 'helgrind')