mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 08:48:31 -05:00
9f46d57f2b
Signed-hostap: Jouni Malinen <j@w1.fi>
12 lines
166 B
Bash
Executable File
12 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
|
|
errors=0
|
|
./start-p2p.sh
|
|
./run-p2p-tests.py || errors=1
|
|
./start-ap.sh
|
|
./run-ap-tests.py || errors=1
|
|
./stop-wifi.sh
|
|
if [ $errors -gt 0 ]; then
|
|
exit 1
|
|
fi
|