[devel] Add-transform-tests-to-pngvalid-simplify-arguments

This commit is contained in:
John Bowler
2011-01-28 06:38:14 -06:00
committed by Glenn Randers-Pehrson
parent fca50dfab3
commit afea7d19e0
3 changed files with 653 additions and 381 deletions

View File

@@ -6,20 +6,14 @@ err=0
echo >> pngtest-log.txt
echo "============ pngvalid-full.sh ==============" >> pngtest-log.txt
echo "Running test-pngvalid-full.sh -- it's lengthy, please wait..."
echo "Running test-pngvalid-full.sh"
for gamma in threshold transform sbit 16-to-8
do
opts=
test "$gamma" = threshold || opts="$opts --nogamma-threshold"
test "$gamma" = transform || opts="$opts --nogamma-transform"
test "$gamma" = sbit || opts="$opts --nogamma-sbit"
test "$gamma" = 16-to-8 || opts="$opts --nogamma-16-to-8"
if ./pngvalid --nostandard $opts >> pngtest-log.txt 2>&1
if ./pngvalid "--gamma-$gamma" >> pngtest-log.txt 2>&1
then
echo " PASS:" pngvalid "(gamma-$gamma)"
echo " PASS:" pngvalid "--gamma-$gamma"
else
echo " FAIL:" pngvalid "(gamma-$gamma)"
echo " FAIL:" pngvalid "--gamma-$gamma"
err=1
fi
done