miniupnp/miniupnpc/testupnpreplyparse.sh

17 lines
254 B
Bash
Raw Normal View History

#!/bin/sh
2021-08-11 14:53:35 +00:00
TESTUPNPREPLYPARSE=./build/testupnpreplyparse
for f in testreplyparse/*.xml ; do
bf="`dirname $f`/`basename $f .xml`"
2021-08-11 14:53:35 +00:00
if $TESTUPNPREPLYPARSE $f $bf.namevalue ; then
echo "$f : passed"
else
echo "$f : FAILED"
exit 1
fi
done
exit 0