hostap/tests/hwsim/run-all.sh
Jouni Malinen 63a020ead8 tests: Use a single set of scripts for running both P2P and AP tests
This removes the unnecessary separation of P2P (no hostapd) and AP
tests. The same scripts can be used to prepare for these tests and to
execute the tests.

Signed-hostap: Jouni Malinen <j@w1.fi>
2013-03-31 18:05:31 +03:00

11 lines
125 B
Bash
Executable file

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