mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
169639e606
In order for --valgrind to be useful, we drop noisy additional output of all of the commands being executed in verbose mode. This makes --verbose alone quite useless, so we don't document it any more. Also, add a zlib valgrind suppression that was showing up frequently in the test suite.
22 lines
594 B
Bash
Executable file
22 lines
594 B
Bash
Executable file
#!/bin/sh
|
|
|
|
base=$(basename "$0")
|
|
|
|
TRACK_ORIGINS=
|
|
|
|
VALGRIND_VERSION=$(valgrind --version)
|
|
VALGRIND_MAJOR=$(expr "$VALGRIND_VERSION" : '[^0-9]*\([0-9]*\)')
|
|
VALGRIND_MINOR=$(expr "$VALGRIND_VERSION" : '[^0-9]*[0-9]*\.\([0-9]*\)')
|
|
test 3 -gt "$VALGRIND_MAJOR" ||
|
|
test 3 -eq "$VALGRIND_MAJOR" -a 4 -gt "$VALGRIND_MINOR" ||
|
|
TRACK_ORIGINS=--track-origins=yes
|
|
|
|
exec valgrind -q --error-exitcode=126 \
|
|
--leak-check=no \
|
|
--suppressions="$GIT_VALGRIND/suppressions" \
|
|
--gen-suppressions=all \
|
|
$TRACK_ORIGINS \
|
|
--log-fd=4 \
|
|
--input-fd=4 \
|
|
$GIT_VALGRIND_OPTIONS \
|
|
"$GIT_VALGRIND"/../../"$base" "$@"
|