mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
13 lines
225 B
Bash
Executable File
13 lines
225 B
Bash
Executable File
#!/bin/sh
|
|
echo 'Testing RDF/XML output'
|
|
INPUT=ct1n0g04.png
|
|
OUTPUT=test4.xpt
|
|
|
|
for dir in . ..; do
|
|
if [ -r $dir/$OUTPUT ]; then
|
|
break;
|
|
fi
|
|
done
|
|
here=`pwd`
|
|
cd $dir && $here/pngmeta -xrdf -quiet $INPUT | diff -c $OUTPUT -
|