[libpng15] Added test-pngstest.sh

This commit is contained in:
Glenn Randers-Pehrson 2011-11-16 14:22:15 -06:00
parent e7acc6ac3d
commit 36f5884359

22
test-pngstest.sh Executable file
View File

@ -0,0 +1,22 @@
#!/bin/sh
#
# Run the simplified API tests
err=0
echo >> pngtest-log.txt
echo "============ pngstest.sh ==============" >> pngtest-log.txt
echo "Running test-pngstest.sh on contrib/pngsuite/*.png"
for opts in "" "--background"
do
if ./pngstest --log "$@" $opts ${srcdir}/contrib/pngsuite/*.png \
>>pngtest-log.txt 2>&1
then
echo " PASS: pngstest $opts"
else
echo " FAIL: pngstest $opts"
err=1
fi
done
exit $err