You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
490 B
Bash
24 lines
490 B
Bash
#!/usr/bin/env bash
|
|
# Test PNG support (-pS, -pc, -pa -c )
|
|
|
|
source ./functions.source
|
|
|
|
( cd "$testdir"
|
|
|
|
files="1343_empty.png 1343_comment.png 1343_exif.png"
|
|
copyTestFiles $files
|
|
for file in $files ; do
|
|
for i in 1 2 ; do
|
|
runTest exiv2 -pS $file
|
|
runTest exiv2 -pc $file
|
|
runTest exiv2 -pa $file
|
|
runTest exiv2 -c 'changed comment' $file
|
|
done
|
|
done
|
|
) > $results 2>&1
|
|
|
|
reportTest
|
|
|
|
# That's all Folks!
|
|
##
|