2013-03-09 20:40:31 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2013-03-09 22:29:22 +01:00
|
|
|
errors=0
|
2013-03-09 20:40:31 +01:00
|
|
|
./start-p2p.sh
|
2013-03-09 22:29:22 +01:00
|
|
|
./run-p2p-tests.py || errors=1
|
2013-03-09 20:40:31 +01:00
|
|
|
./stop-wifi.sh
|
2013-03-09 22:29:22 +01:00
|
|
|
if [ $errors -gt 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|