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.
18 lines
402 B
Bash
18 lines
402 B
Bash
#!/bin/bash
|
|
# Test driver for exifdata copy construction and assignment unit tests
|
|
source ./functions.source
|
|
|
|
( cd "$testdir"
|
|
|
|
copyTestFiles exiv2-gc.jpg exiv2-canon-powershot-s40.jpg exiv2-nikon-d70.jpg
|
|
|
|
runTest exifdata-test exiv2-gc.jpg
|
|
runTest exifdata-test exiv2-canon-powershot-s40.jpg
|
|
runTest exifdata-test exiv2-nikon-d70.jpg
|
|
|
|
) | tr -d '\r' > $results
|
|
|
|
reportTest
|
|
|
|
# That's all Folks!
|
|
## |