diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2017-01-11 14:06:21 -0800 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-01-13 14:53:39 +0200 |
commit | 255f09a73ca6851de8e3d731c5cc1f4373fc84f1 (patch) | |
tree | 6ef3bdd244b416077a5c6a4c47db31575a8a50d1 /scripts | |
parent | a3e9c74dc6f28a25e508c4ce7e0e5424b9d646f4 (diff) | |
download | qtlocation-mapboxgl-255f09a73ca6851de8e3d731c5cc1f4373fc84f1.tar.gz |
[linux] Use valgrind 3.12.0
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/valgrind.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/valgrind.sh b/scripts/valgrind.sh index 4009063c80..c717fc2cb8 100755 --- a/scripts/valgrind.sh +++ b/scripts/valgrind.sh @@ -3,7 +3,7 @@ set -e set -o pipefail -.mason/mason install valgrind latest +.mason/mason install valgrind 3.12.0 PARAMS="\ --leak-check=full \ @@ -13,6 +13,6 @@ PARAMS="\ --gen-suppressions=all \ --suppressions=scripts/valgrind.sup" -export VALGRIND_LIB=$(.mason/mason prefix valgrind latest)/lib/valgrind +export VALGRIND_LIB=$(.mason/mason prefix valgrind 3.12.0)/lib/valgrind -$(.mason/mason prefix valgrind latest)/bin/valgrind $PARAMS $@ +$(.mason/mason prefix valgrind 3.12.0)/bin/valgrind $PARAMS $@ |