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.
17 lines
420 B
Bash
17 lines
420 B
Bash
#!/bin/bash
|
|
# Test driver for write unit tests to build Exif metadata from scratch
|
|
source ./functions.source
|
|
|
|
(
|
|
copyTestFiles exiv2-empty.jpg exiv2-gc.jpg
|
|
cd ./tmp
|
|
runTest exiv2 -v -m ../data/modifycmd1.txt exiv2-empty.jpg
|
|
runTest exiv2 -v -m ../data/modifycmd2.txt exiv2-gc.jpg
|
|
runTest exiv2 -v -pi exiv2-empty.jpg
|
|
runTest exiv2 -v -pt exiv2-empty.jpg exiv2-gc.jpg
|
|
) > $results
|
|
|
|
reportTest
|
|
|
|
# That's all Folks!
|
|
## |