mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
13 lines
255 B
Bash
Executable File
13 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
echo 'Testing compressed text chunk - zTXT (SOIF format)'
|
|
INPUT=ctzn0g04.png
|
|
OUTPUT=test2.xpt
|
|
|
|
for dir in . ..; do
|
|
if [ -r $dir/$OUTPUT ]; then
|
|
break;
|
|
fi
|
|
done
|
|
here=`pwd`
|
|
cd $dir && $here/pngmeta -soif -quiet $INPUT | diff -c $OUTPUT -
|