#!/usr/bin/bash
set -e
# t/io.t and others write into CWD
DIR=$(mktemp -d)
cp -a /usr/libexec/perl-Image-PNG-Libpng/t "$DIR"
pushd "$DIR"
unset ORIGINAL_ZLIB
prove -I . -j 1
popd
rm -r "$DIR"
