2019-10-06 08:25:09 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# test the various restartable loaders
|
|
|
|
|
|
|
|
# set -x
|
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./variables.sh
|
|
|
|
|
|
|
|
if test_supported jpegload; then
|
|
|
|
./test_descriptors $image
|
|
|
|
fi
|
2019-10-06 11:55:19 +02:00
|
|
|
|
|
|
|
if test_supported heifload; then
|
2019-10-06 20:29:10 +02:00
|
|
|
./test_descriptors $test_images/Example1.heic
|
2019-10-06 11:55:19 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test_supported gifload; then
|
|
|
|
./test_descriptors $test_images/cogs.gif
|
|
|
|
fi
|
2019-10-06 19:27:40 +02:00
|
|
|
|
|
|
|
if test_supported pdfload; then
|
|
|
|
./test_descriptors $test_images/ISO_12233-reschart.pdf
|
|
|
|
fi
|
2019-10-07 11:01:15 +02:00
|
|
|
|
|
|
|
if test_supported pngload; then
|
|
|
|
./test_descriptors $test_images/sample.png
|
|
|
|
fi
|
2019-10-07 14:30:19 +02:00
|
|
|
|
|
|
|
if test_supported webpload; then
|
|
|
|
./test_descriptors $test_images/1.webp
|
|
|
|
fi
|