1#!/bin/sh 2# Parses test EXIF files and manipulates maker notes 3# This doesn't perform any explicit checks other than the OS's exceptions due 4# to NULL pointer exceptions, segmentation faults, divide-by-zero, etc. 5# 6# Copyright (C) 2024 Dan Fandrich <dan@coneharvesters.com>, et. al. 7# SPDX-License-Identifier: LGPL-2.0-or-later 8set -e 9 10srcdir="${srcdir:-.}" 11 12for fn in "${srcdir}"/testdata/*.jpg ; do 13 ./test-mnote$EXEEXT "${fn}" >/dev/null 14done 15