run-all.sh 122 B

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