summaryrefslogtreecommitdiff
path: root/ext/miniupnpc/testupnpreplyparse.sh
diff options
context:
space:
mode:
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
+