2019-11-24 19:22:43 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# test load and save via stream*u
|
|
|
|
|
2019-11-27 23:20:33 +01:00
|
|
|
# set -x
|
2019-11-24 19:22:43 +01:00
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./variables.sh
|
|
|
|
|
|
|
|
if test_supported jpegload_stream; then
|
|
|
|
./test_streams $image $tmp/x.png
|
|
|
|
|
|
|
|
# test max difference < 10
|
|
|
|
test_difference $image $tmp/x.png 10
|
|
|
|
fi
|