libvips/test/test_descriptors.sh
John Cupitt f43d6c4cf7 add note in test_desc about ppm loader
and why we can't test_destriptots on that
2019-12-23 14:58:22 +00:00

33 lines
600 B
Bash
Executable File

#!/bin/sh
# test the various restartable loaders
# webp and ppm use streams, but they mmap the input, so you can't close() the
# fd on minimise
# set -x
set -e
. ./variables.sh
if test_supported jpegload_stream; then
./test_descriptors $image
fi
if test_supported pngload_stream; then
./test_descriptors $test_images/sample.png
fi
if test_supported tiffload_stream; then
./test_descriptors $test_images/sample.tif
fi
if test_supported radload_stream; then
./test_descriptors $test_images/sample.hdr
fi
if test_supported svgload_stream; then
./test_descriptors $test_images/logo.svg
fi