libvips/test/test_stall.sh
John Cupitt 6b02c22457 add a test with VIPS_STALL
stresses the caching and locality systems
2019-12-18 14:41:35 +00:00

18 lines
252 B
Bash
Executable File

#!/bin/sh
# set -x
set -e
. ./variables.sh
if test_supported tiffload; then
VIPS_STALL=1 vips copy $image $tmp/x.tif
cat > $tmp/mask.con <<EOF
3 3 8 0
-1 -1 -1
-1 16 -1
-1 -1 -1
EOF
VIPS_STALL=1 vips conv $tmp/x.tif $tmp/x2.tif $tmp/mask.con
fi