File: testupnpreplyparse.sh

package info (click to toggle)
miniupnpc 1.9.20140610-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 716 kB
  • ctags: 665
  • sloc: ansic: 6,548; makefile: 305; sh: 115; python: 114; java: 88; xml: 9
file content (14 lines) | stat: -rwxr-xr-x 208 bytes parent folder | download | duplicates (9)
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