aboutsummaryrefslogtreecommitdiff
path: root/ci/test/wrap-valgrind.sh
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-11-15 11:38:27 -0500
committerMarcoFalke <falke.marco@gmail.com>2019-12-10 19:37:37 -0500
commitfacb416ad5ba47b01ee52c273a5c5e3709f06f07 (patch)
tree66ef08295860af9be2eb1ed5a597cafab95ee5ce /ci/test/wrap-valgrind.sh
parent3d6752779f0504e6435fe682f0c06c60b5c4c33b (diff)
downloadbitcoin-facb416ad5ba47b01ee52c273a5c5e3709f06f07.tar.xz
ci: Add valgrind run
Diffstat (limited to 'ci/test/wrap-valgrind.sh')
-rwxr-xr-xci/test/wrap-valgrind.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/ci/test/wrap-valgrind.sh b/ci/test/wrap-valgrind.sh
new file mode 100755
index 0000000000..d2192061db
--- /dev/null
+++ b/ci/test/wrap-valgrind.sh
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2018 The Bitcoin Core developers
+# Distributed under the MIT software license, see the accompanying
+# file COPYING or http://www.opensource.org/licenses/mit-license.php.
+
+export LC_ALL=C.UTF-8
+
+for b_name in "${BASE_OUTDIR}/bin"/*; do
+ # shellcheck disable=SC2044
+ for b in $(find "${BASE_ROOT_DIR}" -executable -type f -name $(basename $b_name)); do
+ echo "Wrap $b ..."
+ mv "$b" "${b}_orig"
+ echo '#!/usr/bin/env bash' > "$b"
+ echo "valgrind --gen-suppressions=all --quiet --error-exitcode=1 --suppressions=${BASE_ROOT_DIR}/contrib/valgrind.supp \"${b}_orig\" \"\$@\"" >> "$b"
+ chmod +x "$b"
+ done
+done