diff options
author | James McCoy <jamessan@jamessan.com> | 2016-06-07 23:24:23 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-06-08 00:24:23 -0400 |
commit | 15afd30e0488881107bb74836e8c10799ee273f8 (patch) | |
tree | 3d47298b2c26615245a517155b7046130e8f5751 /test/functional/helpers.lua | |
parent | 7e74ba4108240bd20f4ee7116c407def0d9f4458 (diff) | |
download | rneovim-15afd30e0488881107bb74836e8c10799ee273f8.tar.gz rneovim-15afd30e0488881107bb74836e8c10799ee273f8.tar.bz2 rneovim-15afd30e0488881107bb74836e8c10799ee273f8.zip |
test: Fix path to valgrind suppressions (#4892)
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 846ce72e14..ef8efc04e4 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -30,7 +30,7 @@ if os.getenv('VALGRIND') then prepend_argv = {'valgrind', '-q', '--tool=memcheck', '--leak-check=yes', '--track-origins=yes', '--show-possibly-lost=no', - '--suppressions=.valgrind.supp', + '--suppressions=src/.valgrind.supp', '--log-file='..log_file} if os.getenv('GDB') then table.insert(prepend_argv, '--vgdb=yes') |