mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-02-06 12:14:04 -05:00
10 lines
122 B
Bash
Executable File
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
|