24 lines
406 B
Bash
Executable File
24 lines
406 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# test the various restartable loaders
|
|
|
|
# webp uses streans, but it needs to mmap the input, so you can't close() the
|
|
# fd on minimise
|
|
|
|
# set -x
|
|
set -e
|
|
|
|
. ./variables.sh
|
|
|
|
if test_supported jpegload; then
|
|
./test_descriptors $image
|
|
fi
|
|
|
|
if test_supported pngload; then
|
|
./test_descriptors $test_images/sample.png
|
|
fi
|
|
|
|
if test_supported tiffload; then
|
|
./test_descriptors $test_images/sample.tif
|
|
fi
|