exiv2/test/path-test.sh
2023-06-02 00:25:13 +08:00

17 lines
353 B
Bash
Executable File

#!/usr/bin/env bash
# Mini test-driver for path utility functions
source ./functions.source
( cd "$testdir"
if [ $(existsTest path-test) == 1 ] ; then
copyTestFile path-test.txt
runTest path-test path-test.txt
else
echo "$0: path-test executable not found. Skipping path tests."
fi
)
# That's all Folks!
##