[libpng16] Divide pngstest into separate runs for basic and transparent images.
This commit is contained in:
parent
feecc898d9
commit
5cdff4144e
3
ANNOUNCE
3
ANNOUNCE
@ -143,8 +143,9 @@ Version 1.6.0beta07 [January 28, 2012]
|
|||||||
pngsuite/README.txt.
|
pngsuite/README.txt.
|
||||||
|
|
||||||
Version 1.6.0beta08 [January 28, 2012]
|
Version 1.6.0beta08 [January 28, 2012]
|
||||||
Fixed Image::colormap mis-alignment in pngstest.c
|
Fixed Image::colormap misalignment in pngstest.c
|
||||||
Check libtool/libtoolize version number (2.4.2) in configure.ac
|
Check libtool/libtoolize version number (2.4.2) in configure.ac
|
||||||
|
Divide pngstest into separate runs for basic and transparent images.
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
3
CHANGES
3
CHANGES
@ -3894,8 +3894,9 @@ Version 1.6.0beta07 [January 28, 2012]
|
|||||||
pngsuite/README.txt.
|
pngsuite/README.txt.
|
||||||
|
|
||||||
Version 1.6.0beta08 [January 28, 2012]
|
Version 1.6.0beta08 [January 28, 2012]
|
||||||
Fixed Image::colormap mis-alignment in pngstest.c
|
Fixed Image::colormap misalignment in pngstest.c
|
||||||
Check libtool/libtoolize version number (2.4.2) in configure.ac
|
Check libtool/libtoolize version number (2.4.2) in configure.ac
|
||||||
|
Divide pngstest into separate runs for basic and transparent images.
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
@ -9,12 +9,20 @@ echo "============ pngstest.sh ==============" >> pngtest-log.txt
|
|||||||
echo "Running test-pngstest.sh on contrib/pngsuite/*.png"
|
echo "Running test-pngstest.sh on contrib/pngsuite/*.png"
|
||||||
for opts in "" "--background"
|
for opts in "" "--background"
|
||||||
do
|
do
|
||||||
if ./pngstest --log "$@" $opts ${srcdir}/contrib/pngsuite/*.png \
|
if ./pngstest --log "$@" $opts ${srcdir}/contrib/pngsuite/bas*.png \
|
||||||
>>pngtest-log.txt 2>&1
|
>>pngtest-log.txt 2>&1
|
||||||
then
|
then
|
||||||
echo " PASS: pngstest $opts"
|
echo " PASS: pngstest $opts (basic images)"
|
||||||
else
|
else
|
||||||
echo " FAIL: pngstest $opts"
|
echo " FAIL: pngstest $opts (basic images)"
|
||||||
|
err=1
|
||||||
|
fi
|
||||||
|
if ./pngstest --log "$@" $opts ${srcdir}/contrib/pngsuite/ft*.png \
|
||||||
|
>>pngtest-log.txt 2>&1
|
||||||
|
then
|
||||||
|
echo " PASS: pngstest $opts (transparent images)"
|
||||||
|
else
|
||||||
|
echo " FAIL: pngstest $opts (transparent images)"
|
||||||
err=1
|
err=1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user