From 097cbcfb2a1aa78928059a60559d81eaa6c98871 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 21 Oct 2020 14:16:00 +1000 Subject: [PATCH] wrapper: disable minidumps by default We assume the wrapper is only used during debugging, so uploading dumps is _probably_ not terrifically useful. --- wrapper.py.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wrapper.py.in b/wrapper.py.in index 13817ee..f9aa676 100755 --- a/wrapper.py.in +++ b/wrapper.py.in @@ -67,6 +67,8 @@ defaults = { 'ROOT': root, + 'MINIDUMP_UPLOAD': '0', + 'ASAN_OPTIONS': ':'.join (f"{k}={v}" for k,v in asan_options.items()) }