[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a
Maximiliano Curia
maxy at moszumanska.debian.org
Thu Jul 13 17:36:56 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=ca3a60e
The following commit has been merged in the master branch:
commit ca3a60e1482ac4579badb81015170cc624491d16
Author: Andreas Huggel <ahuggel at gmx.net>
Date: Wed Jan 19 15:11:54 2005 +0000
Replaced let with expr
---
test/imagetest.sh | 12 ++++++------
test/iotest.sh | 6 +++---
test/iptctest.sh | 4 ++--
3 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/test/imagetest.sh b/test/imagetest.sh
index 2a35a73..36867ed 100755
--- a/test/imagetest.sh
+++ b/test/imagetest.sh
@@ -66,7 +66,7 @@ diffCheck()
#run diff and check results
diff -q --binary $test $good
if [ $? -ne 0 ]; then
- let ++errors
+ errors=`expr $errors + 1`
else
rm $test
fi
@@ -82,7 +82,7 @@ datapath="../data"
test_files="table.jpg smiley1.jpg smiley2.jpg"
-let errors=0
+errors=0
cd ./tmp
echo
@@ -91,16 +91,16 @@ for i in $test_files; do eraseTest $i; done
eraseTest "glider.exv" #extra test
echo -ne "
Copy all tests"
-let c=0
+c=0
for src in $test_files; do
- let ++c
+ c=`expr $c + 1`
for dst in $test_files; do copyTest $c $src $dst; done
done
echo -ne "
Copy iptc tests"
-let c=0
+c=0
for src in $test_files; do
- let ++c
+ c=`expr $c + 1`
for dst in $test_files; do iptcTest $c $src $dst; done
done
diff --git a/test/iotest.sh b/test/iotest.sh
index 164dbce..c1eaecd 100755
--- a/test/iotest.sh
+++ b/test/iotest.sh
@@ -10,7 +10,7 @@ ioTest()
#run tests
$binpath/iotest $src $out1 $out2
if [ $? -ne 0 ]; then
- let ++errors
+ errors=`expr $errors + 1`
return
fi
@@ -29,7 +29,7 @@ diffCheck()
#run diff and check results
diff -q --binary $test $good
if [ $? -ne 0 ]; then
- let ++errors
+ errors=`expr $errors + 1`
else
rm $test
fi
@@ -45,7 +45,7 @@ datapath="../data"
test_files="table.jpg smiley2.jpg ext.dat"
-let errors=0
+errors=0
cd ./tmp
echo
diff --git a/test/iptctest.sh b/test/iptctest.sh
index ab2460a..98300fb 100755
--- a/test/iptctest.sh
+++ b/test/iptctest.sh
@@ -101,7 +101,7 @@ diffCheck()
#run diff and check results
diff -q $diffargs $test $good
if [ $? -ne 0 ]; then
- let ++errors
+ errors=`expr $errors + 1`
else
rm $test
fi
@@ -124,7 +124,7 @@ fi
test_files="smiley1.jpg smiley2.jpg glider.exv table.jpg"
-let errors=0
+errors=0
cd ./tmp
echo
--
exiv2 packaging
More information about the pkg-kde-commits
mailing list