danicoin/external/miniupnpc/testupnpreplyparse.sh
2014-04-09 13:14:35 +01:00

15 lines
208 B
Bash
Executable file

#!/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