From bc887cdcf2b783bcb9c8fdec5adc93ba710a3f5e Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Tue, 3 May 2016 14:59:03 -0300 Subject: [PATCH] Fix Valgrind regression test script Calling the right binary name --- test/regression-tests-valgrind.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/regression-tests-valgrind.sh b/test/regression-tests-valgrind.sh index 90ef5532..13a40be4 100755 --- a/test/regression-tests-valgrind.sh +++ b/test/regression-tests-valgrind.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash -valgrind --tool=massif ./regression-tests $* -valgrind --leak-check=full --suppressions=./valgrind_suppressions.txt ./regression-tests $* +valgrind --tool=massif ./regression_tests $* +valgrind --leak-check=full --suppressions=./valgrind_suppressions.txt ./regression_tests $*