mirror of
https://github.com/monero-project/monero.git
synced 2024-11-05 16:07:37 +00:00
15 lines
208 B
Bash
15 lines
208 B
Bash
|
#!/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
|
||
|
|