mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-10 23:20:58 +00:00
6219111ed7
Most of the README files have been renamed. Refer to the new names.
25 lines
510 B
Bash
Executable File
25 lines
510 B
Bash
Executable File
#!/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+"$@"}
|