mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[devel] Don't display test results (except PASS/FAIL) when running "make test".
Instead put them in pngtest-log.txt
This commit is contained in:
@@ -2,6 +2,11 @@
|
||||
#
|
||||
# Run a sequence of gamma tests quietly
|
||||
err=0
|
||||
|
||||
echo >> pngtest-log.txt
|
||||
echo "============ pngvalid-full.sh ==============" >> pngtest-log.txt
|
||||
|
||||
echo "Running test-pngvalid-full.sh -- it's lengthy, please wait..."
|
||||
for gamma in threshold transform sbit 16-to-8
|
||||
do
|
||||
opts=
|
||||
@@ -10,13 +15,15 @@ do
|
||||
test "$gamma" = sbit || opts="$opts --nogamma-sbit"
|
||||
test "$gamma" = 16-to-8 || opts="$opts --nogamma-16-to-8"
|
||||
|
||||
if ./pngvalid -q --nostandard $opts
|
||||
if ./pngvalid --nostandard $opts >> pngtest-log.txt
|
||||
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
|
||||
|
||||
echo
|
||||
|
||||
exit $err
|
||||
|
||||
Reference in New Issue
Block a user