aboutsummaryrefslogtreecommitdiff
path: root/test/functional/helpers.lua
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-06-07 23:24:23 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-06-08 00:24:23 -0400
commit15afd30e0488881107bb74836e8c10799ee273f8 (patch)
tree3d47298b2c26615245a517155b7046130e8f5751 /test/functional/helpers.lua
parent7e74ba4108240bd20f4ee7116c407def0d9f4458 (diff)
downloadrneovim-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.lua2
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')