mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
14 lines
208 B
Bash
Executable file
14 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
|
|
|