aboutsummaryrefslogtreecommitdiffstats
path: root/make/exec-z
diff options
context:
space:
mode:
Diffstat (limited to 'make/exec-z')
-rwxr-xr-xmake/exec-z24
1 files changed, 0 insertions, 24 deletions
diff --git a/make/exec-z b/make/exec-z
deleted file mode 100755
index eab305b9..00000000
--- a/make/exec-z
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-# This script is used for valgrind testing. See README-maintainer.md.
-
-# Create a suppressions file. This can be updated by running valgrind
-# with --gen-suppressions=yes.
-test -f /tmp/a.supp || cat > /tmp/a.supp <<EOF
-{
- zlib1
- Memcheck:Cond
- fun:inflateReset2
- fun:inflateInit2_
-}
-{
- index
- Memcheck:Cond
- fun:index
- fun:expand_dynamic_string_token
- fun:_dl_map_object
- fun:map_doit
-}
-EOF
-
-exec valgrind --suppressions=/tmp/a.supp -q \
- `dirname $0`/z/`basename $0` ${1+"$@"}