9e88556a1c
Try to make sure new testing can be started by forcing hostapd/wpa_supplicant to be killed with SIGKILL if needed. In addition, wait a bit longer when killing the processes to avoid issues with the next test run starting before the old one has been fully terminated. Signed-hostap: Jouni Malinen <j@w1.fi>
46 lines
1.1 KiB
Bash
Executable file
46 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
if pidof wpa_supplicant hostapd > /dev/null; then
|
|
RUNNING=yes
|
|
else
|
|
RUNNING=no
|
|
fi
|
|
|
|
sudo killall -q hostapd
|
|
sudo killall -q wpa_supplicant
|
|
for i in `pidof valgrind.bin`; do
|
|
if ps $i | grep -q -E "wpa_supplicant|hostapd"; then
|
|
sudo kill $i
|
|
fi
|
|
done
|
|
sudo killall -q wlantest
|
|
sudo killall -q tcpdump
|
|
if grep -q hwsim0 /proc/net/dev; then
|
|
sudo ifconfig hwsim0 down
|
|
fi
|
|
|
|
if [ "$RUNNING" = "yes" ]; then
|
|
# give some time for hostapd and wpa_supplicant to complete deinit
|
|
sleep 2
|
|
fi
|
|
|
|
if pidof wpa_supplicant hostapd > /dev/null; then
|
|
echo "wpa_supplicant/hostapd did not exit - try to force them to die"
|
|
sudo killall -9 -q hostapd
|
|
sudo killall -9 -q wpa_supplicant
|
|
sleep 5
|
|
fi
|
|
|
|
for i in `pidof valgrind.bin`; do
|
|
if ps $i | grep -q -E "wpa_supplicant|hostapd"; then
|
|
echo "wpa_supplicant/hostapd(valgrind) did not exit - try to force it to die"
|
|
sudo kill -9 $i
|
|
fi
|
|
done
|
|
|
|
if grep -q mac80211_hwsim /proc/modules ; then
|
|
sudo rmmod mac80211_hwsim
|
|
# wait at the end to avoid issues starting something new immediately after
|
|
# this script returns
|
|
sleep 1
|
|
fi
|