hostap/tests/hwsim/run-all.sh
Jouni Malinen 81266da728 tests: Add initial AP tests with hostapd
Signed-hostap: Jouni Malinen <j@w1.fi>
2013-03-27 14:29:01 +02:00

11 lines
180 B
Bash
Executable file

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