hostap/tests/hwsim/run-all.sh
Jouni Malinen 89ffe06d68 tests: Do not hide error return when using run-all.sh
Signed-hostap: Jouni Malinen <j@w1.fi>
2013-03-09 23:29:22 +02:00

10 lines
122 B
Bash
Executable file

#!/bin/sh
errors=0
./start-p2p.sh
./run-p2p-tests.py || errors=1
./stop-wifi.sh
if [ $errors -gt 0 ]; then
exit 1
fi