diff options
author | Sverker Eriksson <[email protected]> | 2019-06-20 17:13:24 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2019-06-20 17:13:24 +0200 |
commit | 68b18034925e05be4bc462c6597d75082703c671 (patch) | |
tree | 10c20583aa928e04ac4bc2b906b27471f5f4a5db /erts | |
parent | 44eed99611ac341f47121add6367f5e34c2054b7 (diff) | |
download | otp-68b18034925e05be4bc462c6597d75082703c671.tar.gz otp-68b18034925e05be4bc462c6597d75082703c671.tar.bz2 otp-68b18034925e05be4bc462c6597d75082703c671.zip |
Add default VALGRIND_MISC_FLAGS if not set
Diffstat (limited to 'erts')
-rw-r--r-- | erts/etc/unix/cerl.src | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/erts/etc/unix/cerl.src b/erts/etc/unix/cerl.src index 8cfc2d549e..7a5d31b9eb 100644 --- a/erts/etc/unix/cerl.src +++ b/erts/etc/unix/cerl.src @@ -293,7 +293,8 @@ if [ "x$GDB" = "x" ]; then fi fi if [ "x$VALGRIND_MISC_FLAGS" = "x" ]; then - valgrind_misc_flags= + valgrind_misc_flags="--show-possibly-lost=no --child-silent-after-fork=yes\ + --suppressions=$ROOTDIR/erts/emulator/valgrind/suppress.standard" else valgrind_misc_flags="$VALGRIND_MISC_FLAGS" fi |