2019-11-24 19:22:43 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-01-01 12:28:18 +01:00
|
|
|
# test load and save via custom connection
|
2019-11-24 19:22:43 +01:00
|
|
|
|
2019-11-27 23:20:33 +01:00
|
|
|
# set -x
|
2019-11-24 19:22:43 +01:00
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./variables.sh
|
|
|
|
|
2020-01-01 12:28:18 +01:00
|
|
|
if test_supported jpegload_source; then
|
2019-12-29 22:40:21 +01:00
|
|
|
./test_connections $image $tmp/x.png
|
2019-11-24 19:22:43 +01:00
|
|
|
|
|
|
|
# test max difference < 10
|
|
|
|
test_difference $image $tmp/x.png 10
|
|
|
|
fi
|