diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-07 01:37:34 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-07 01:40:18 -0300 |
commit | 88a49148b3c6a784651e9046687c4c19a74d2e6d (patch) | |
tree | 017d6dc58a55d6a39abd80eb3c383c759089820a /test/functional/helpers.lua | |
parent | 7ded32ad3b869b429a617367ea9af4c66a50df1e (diff) | |
download | rneovim-88a49148b3c6a784651e9046687c4c19a74d2e6d.tar.gz rneovim-88a49148b3c6a784651e9046687c4c19a74d2e6d.tar.bz2 rneovim-88a49148b3c6a784651e9046687c4c19a74d2e6d.zip |
test: Pass --show-possibly-lost=no to valgrind in helpers.lua
This command-line flag will suppress all warnings about interior pointers,
which are used in hashtab.c.
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index fcef1bd621..bf6e3dd38a 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -11,6 +11,7 @@ if os.getenv('VALGRIND') then local log_file = os.getenv('VALGRIND_LOG') or 'valgrind-%p.log' local valgrind_argv = {'valgrind', '-q', '--tool=memcheck', '--leak-check=yes', '--track-origins=yes', + '--show-possibly-lost=no', '--suppressions=.valgrind.supp', '--log-file='..log_file} if os.getenv('VALGRIND_GDB') then |