From 90305cee1e440a3e7887f8b6ac4d97411924f0b7 Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Thu, 13 Sep 2018 08:46:11 +0200 Subject: [PATCH] Fix in exiv2-test.sh for Cygwin --- test/exiv2-test.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/exiv2-test.sh b/test/exiv2-test.sh index ef3058fd..f951bc52 100755 --- a/test/exiv2-test.sh +++ b/test/exiv2-test.sh @@ -2,6 +2,7 @@ # Test driver for exiv2 utility tests source ./functions.source +diffargs="-w --text $diffargs" ( cd "$testdir" @@ -88,7 +89,7 @@ source ./functions.source runTest exiv2 -u -v -b -pt print $image3 > jjj echo echo "Compare image data and extracted data ------------------------------------" - diff iii jjj + diff $diffargs iii jjj echo echo "Delete Thumbnail ---------------------------------------------------------" runTest exiv2 -u -v -dt delete $image2 @@ -103,12 +104,11 @@ source ./functions.source runTest exiv2 -u -v -b -pt print $image3 > kkk echo echo "Compare original and inserted image data ---------------------------------" - diff iii kkk + diff $diffargs iii kkk ) > $results 2>&1 -diffargs="-w $diffargs" reportTest # That's all Folks! -## \ No newline at end of file +##