bump wrapper script version
and add a test too see https://github.com/jcupitt/libvips/issues/834
This commit is contained in:
parent
19e2e2e208
commit
424b359d33
@ -3,6 +3,7 @@
|
||||
- fix some compiler warnings
|
||||
- remove the 64-image limit on bandary operations
|
||||
- better version date, thanks bmwiedemann
|
||||
- bump wrapper script version, thanks bgilbert
|
||||
|
||||
15/4/17 started 8.6.0
|
||||
- supports fits images with leading non-image HDUs, thanks benepo
|
||||
|
@ -7,6 +7,15 @@
|
||||
|
||||
. ./variables.sh
|
||||
|
||||
# verify that the version number on the wrapper script is correct
|
||||
version=$($vips --version)
|
||||
major=$(echo $version | cut -b6- | cut -d. -f1)
|
||||
minor=$(echo $version | cut -b6- | cut -d. -f2)
|
||||
if ! test -f $top_srcdir/tools/vips-$major.$minor; then
|
||||
echo version number in vips wrapper is not correct
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# is a difference beyond a threshold? return 0 (meaning all ok) or 1 (meaning
|
||||
# error, or outside threshold)
|
||||
#
|
||||
@ -87,3 +96,4 @@ test_thumbnail "100x100<" 1024 768
|
||||
test_thumbnail "2000<" 2000 1500
|
||||
test_thumbnail "100x100>" 100 75
|
||||
test_thumbnail "2000>" 1024 768
|
||||
|
||||
|
@ -20,7 +20,7 @@ bin_SCRIPTS = \
|
||||
batch_rubber_sheet \
|
||||
batch_crop \
|
||||
vipsprofile \
|
||||
vips-8.5
|
||||
vips-8.6
|
||||
|
||||
EXTRA_DIST = \
|
||||
vipsprofile \
|
||||
|
Loading…
Reference in New Issue
Block a user