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
317 B
Bash
18 lines
317 B
Bash
21 years ago
|
#! /bin/sh
|
||
|
# Test driver for tests of MakerNoteFactory::match
|
||
|
results="./tmp/makernote-test.out"
|
||
|
good="./data/makernote-test.out"
|
||
|
(
|
||
|
binpath="../../src"
|
||
|
cd ./tmp
|
||
|
$binpath/makernote-test
|
||
|
) > $results
|
||
|
|
||
|
diff -q $results $good
|
||
|
rc=$?
|
||
|
if [ $rc -eq 0 ] ; then
|
||
|
echo "All testcases passed."
|
||
|
else
|
||
|
diff $results $good
|
||
|
fi
|