aboutsummaryrefslogblamecommitdiff
path: root/external/miniupnpc/testupnpreplyparse.sh
blob: 992930b7b457b28a8d6b9abad8ce4e6d588f594a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
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