From 8a244cd8a0221e09cfed0fbfc26c6175d481ae06 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Tue, 19 Mar 2013 10:58:28 +0200 Subject: [PATCH] tests: Add concurrent version of P2P test setup A virtual station interface in scanning state can change the P2P operations quite a bit, so running all the P2P tests also in such setup can increase testing coverage quite a bit. Signed-hostap: Jouni Malinen --- tests/hwsim/sta-dummy.conf | 7 +++++++ tests/hwsim/start-p2p-concurrent.sh | 19 +++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 tests/hwsim/sta-dummy.conf create mode 100755 tests/hwsim/start-p2p-concurrent.sh diff --git a/tests/hwsim/sta-dummy.conf b/tests/hwsim/sta-dummy.conf new file mode 100644 index 000000000..52b720519 --- /dev/null +++ b/tests/hwsim/sta-dummy.conf @@ -0,0 +1,7 @@ +ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=admin + +network={ + disabled=0 + ssid="test" + key_mgmt=NONE +} diff --git a/tests/hwsim/start-p2p-concurrent.sh b/tests/hwsim/start-p2p-concurrent.sh new file mode 100755 index 000000000..969249dc4 --- /dev/null +++ b/tests/hwsim/start-p2p-concurrent.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +DIR="$( cd "$( dirname "$0" )" && pwd )" +WPAS=$DIR/../../wpa_supplicant/wpa_supplicant +WLANTEST=$DIR/../../wlantest/wlantest + +$DIR/stop-wifi.sh +sudo modprobe mac80211_hwsim radios=3 +sudo iw wlan0 interface add sta0 type station +sudo iw wlan1 interface add sta1 type station +sudo iw wlan2 interface add sta2 type station +mkdir -p $DIR/logs +DATE=`date +%s` +sudo ifconfig hwsim0 up +sudo $WLANTEST -i hwsim0 -c -d > $DIR/logs/$DATE-hwsim0 & +sudo $WPAS -Dnl80211 -iwlan0 -c $DIR/p2p0.conf -N -Dnl80211 -ista0 -c $DIR/sta-dummy.conf -ddKt > $DIR/logs/$DATE-log0 & +sudo $WPAS -Dnl80211 -iwlan1 -c $DIR/p2p1.conf -N -Dnl80211 -ista1 -c $DIR/sta-dummy.conf -ddKt > $DIR/logs/$DATE-log1 & +sudo $WPAS -Dnl80211 -iwlan2 -c $DIR/p2p2.conf -N -Dnl80211 -ista2 -c $DIR/sta-dummy.conf -ddKt > $DIR/logs/$DATE-log2 & +sleep 1