mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[devel] Enable the strip16 tests in pngvalid
This commit is contained in:
committed by
Glenn Randers-Pehrson
parent
ba851ccd9f
commit
b54498edea
@@ -1,3 +1,19 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Run a sequence of tests quietly, without the slow
|
||||
# gamma tests
|
||||
err=0
|
||||
|
||||
./pngvalid -q --speed
|
||||
for opts in "" --progressive-read --interlace \
|
||||
"--progressive-read --interlace"
|
||||
do
|
||||
if ./pngvalid -q --nogamma $opts
|
||||
then
|
||||
echo "PASS:" pngvalid --nogamma $opts
|
||||
else
|
||||
echo "FAIL:" pngvalid --nogamma $opts
|
||||
err=1
|
||||
fi
|
||||
done
|
||||
|
||||
exit $err
|
||||
|
||||
Reference in New Issue
Block a user