run-all.sh 166 B

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