mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-29 02:38:22 -05:00
63a020ead8
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>
11 lines
125 B
Bash
Executable File
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
|