diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-11-16 18:28:55 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-11-16 18:28:55 -0800 |
commit | cf6164e8477aaa65edd07d136ef1991288feff99 (patch) | |
tree | 5841803b4af61f237e761fe18fa8055e62da5079 /ext/miniupnpc/testupnpreplyparse.sh | |
parent | a13a21377c2d028d81b5cb26567ebe23bbb2e891 (diff) | |
download | infinitytier-cf6164e8477aaa65edd07d136ef1991288feff99.tar.gz infinitytier-cf6164e8477aaa65edd07d136ef1991288feff99.zip |
Build libminiupnpc from source now, and update version.
Diffstat (limited to 'ext/miniupnpc/testupnpreplyparse.sh')
-rwxr-xr-x | ext/miniupnpc/testupnpreplyparse.sh | 14 |
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 + |