danicoin/external/miniupnpc/testupnpreplyparse.sh

15 lines
208 B
Bash
Raw Normal View History

2014-04-09 12:14:35 +00:00
#!/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