[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:43:07 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=cc4468b

The following commit has been merged in the master branch:
commit cc4468bac687c46c16d1108a1c26b99c429cd913
Author: Robin Mills <robin at clanmills.com>
Date:   Mon May 7 07:20:31 2012 +0000

    Adding a test tool.
---
 test/verifyMSVC.sh | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/test/verifyMSVC.sh b/test/verifyMSVC.sh
new file mode 100644
index 0000000..a2f1ee7
--- /dev/null
+++ b/test/verifyMSVC.sh
@@ -0,0 +1,32 @@
+#!/bin/bash
+
+##
+# read the output from testMSVC.sh and generate summary
+# there should be 24 tests (3 compilers) * (2 archs) * (4 targets)
+# compilers: 2005    | 8 | 10
+# archs:     Win32   | x64
+# targets:   Release | ReleaseDLL | Debug | DebugDLL
+##
+
+if [ $# != 1 ]; then
+	echo usage: $0 \<path-to-results\>
+	exit
+fi
+
+filename="$1"
+if [ ! -e "$filename" ]; then
+	echo filename "$filename" does not exist
+	exit
+fi	
+
+nl "$filename" | grep "\-\-\-\-\ " | while read i ; do
+	let x=$(echo $i | cut -d' ' -f 1)
+	let d=x-o
+	if [ $d != 1 ]; then
+		echo $d $i
+	fi
+	let o=x
+done
+
+# That's all Folks
+##

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list