13 lines
285 B
Bash
Executable File
13 lines
285 B
Bash
Executable File
#! /bin/sh
|
|
# Mini test-driver for path utility functions
|
|
if [ -z "$EXIV2_BINDIR" ] ; then
|
|
bin="$VALGRIND ../../src"
|
|
samples="$VALGRIND ../../samples"
|
|
else
|
|
bin="$VALGRIND $EXIV2_BINDIR"
|
|
samples="$VALGRIND $EXIV2_BINDIR"
|
|
fi
|
|
cd ./tmp
|
|
|
|
$bin/path-test ../data/path-test.txt
|