2013-03-09 21:40:31 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2013-03-09 23:29:22 +02:00
|
|
|
errors=0
|
2013-03-30 11:11:55 +02:00
|
|
|
umask 0002
|
2013-03-09 21:40:31 +02:00
|
|
|
./start-p2p.sh
|
2013-03-09 23:29:22 +02:00
|
|
|
./run-p2p-tests.py || errors=1
|
2013-03-29 17:19:47 +02:00
|
|
|
./start-ap.sh
|
|
|
|
./run-ap-tests.py || errors=1
|
2013-03-09 21:40:31 +02:00
|
|
|
./stop-wifi.sh
|
2013-03-09 23:29:22 +02:00
|
|
|
if [ $errors -gt 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|