]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Make wpa_supplicant and hostapd executable through valgrind
authorJouni Malinen <j@w1.fi>
Sat, 24 Aug 2013 18:46:44 +0000 (21:46 +0300)
committerJouni Malinen <j@w1.fi>
Sat, 24 Aug 2013 18:46:44 +0000 (21:46 +0300)
It looks like valgrind could not under buildbot with the default file
mode. Fix this by making wpa_supplicant and hostapd binaries readable
and executable by everyone.

Signed-hostap: Jouni Malinen <j@w1.fi>

tests/hwsim/start.sh

index 5d97b8a9d262e0ca48949e69fce39aa07b790888..56a68f90d002bd83a7f66fde3e4a4a0dc9ceed40 100755 (executable)
@@ -20,8 +20,10 @@ sudo $WLANTEST -i hwsim0 -c -d > $DIR/logs/$DATE-hwsim0 &
 sudo tcpdump -ni hwsim0 -s 2500 -w $DIR/logs/$DATE-hwsim0.dump &
 if [ "x$VALGRIND" = "xy" ]; then
     for i in 0 1 2; do
+       chmod a+rx $WPAS
        sudo valgrind --log-file=$DIR/logs/$DATE-valgrind-wlan$i $WPAS -g /tmp/wpas-wlan$i -Gadmin -Dnl80211 -iwlan$i -c $DIR/p2p$i.conf -ddKt > $DIR/logs/$DATE-log$i &
     done
+    chmod a+rx $HAPD
     sudo valgrind --log-file=$DIR/logs/$DATE-valgrind-hostapd $HAPD -ddKt -g /var/run/hostapd-global -G admin -ddKt > $DIR/logs/$DATE-hostapd &
 else
     for i in 0 1 2; do