Return to testupnpreplyparse.sh CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / miniupnpc |
1.1 ! misho 1: #!/bin/sh ! 2: ! 3: if [ -z "$TESTUPNPREPLYPARSE" ] ; then ! 4: TESTUPNPREPLYPARSE=./build/testupnpreplyparse ! 5: fi ! 6: ! 7: for f in testreplyparse/*.xml ; do ! 8: bf="`dirname $f`/`basename $f .xml`" ! 9: if $TESTUPNPREPLYPARSE $f $bf.namevalue ; then ! 10: echo "$f : passed" ! 11: else ! 12: echo "$f : FAILED" ! 13: exit 1 ! 14: fi ! 15: done ! 16: ! 17: exit 0