1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# "exif" test scripts
# Only tests that work without image files should be found here.
# More complicated tests should be put into the libexif-testsuite module.
# check-vars.sh.in is automatically included
EXTRA_DIST = \
check-add-tags.sh \
check-create-tags.sh \
check-help.sh \
check-init-mandatory-tags.sh \
check-no-seek.sh \
check-param-validity.sh \
check-required-file.sh \
check-show-description.sh \
check-show-tag.sh \
check-tag-description.sh \
check-thumbnail.sh \
check-version.sh \
testdata/no-exif.jpg
check_SCRIPTS = \
check-add-tags.sh \
check-create-tags.sh \
check-help.sh \
check-init-mandatory-tags.sh \
check-no-seek.sh \
check-param-validity.sh \
check-required-file.sh \
check-show-description.sh \
check-show-tag.sh \
check-tag-description.sh \
check-thumbnail.sh \
check-version.sh
TESTS = $(check_SCRIPTS)
|