summaryrefslogtreecommitdiff
path: root/ext/miniupnpc/testupnpreplyparse.sh
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2015-11-16 18:28:55 -0800
committerAdam Ierymenko <adam.ierymenko@gmail.com>2015-11-16 18:28:55 -0800
commitcf6164e8477aaa65edd07d136ef1991288feff99 (patch)
tree5841803b4af61f237e761fe18fa8055e62da5079 /ext/miniupnpc/testupnpreplyparse.sh
parenta13a21377c2d028d81b5cb26567ebe23bbb2e891 (diff)
downloadinfinitytier-cf6164e8477aaa65edd07d136ef1991288feff99.tar.gz
infinitytier-cf6164e8477aaa65edd07d136ef1991288feff99.zip
Build libminiupnpc from source now, and update version.
Diffstat (limited to 'ext/miniupnpc/testupnpreplyparse.sh')
-rwxr-xr-xext/miniupnpc/testupnpreplyparse.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/ext/miniupnpc/testupnpreplyparse.sh b/ext/miniupnpc/testupnpreplyparse.sh
new file mode 100755
index 00000000..992930b7
--- /dev/null
+++ b/ext/miniupnpc/testupnpreplyparse.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+for f in testreplyparse/*.xml ; do
+ bf="`dirname $f`/`basename $f .xml`"
+ if ./testupnpreplyparse $f $bf.namevalue ; then
+ echo "$f : passed"
+ else
+ echo "$f : FAILED"
+ exit 1
+ fi
+done
+
+exit 0
+