run-all.sh 177 B

123456789101112
  1. #!/bin/sh
  2. errors=0
  3. umask 0002
  4. ./start-p2p.sh
  5. ./run-p2p-tests.py || errors=1
  6. ./start-ap.sh
  7. ./run-ap-tests.py || errors=1
  8. ./stop-wifi.sh
  9. if [ $errors -gt 0 ]; then
  10. exit 1
  11. fi