hostap/tests/hwsim/build.sh
Jouni Malinen dbd1e184e3 tests: TNC testing
This implements minimal IMC and IMV to allow TNC testing with PEAP (SoH)
and TTLS/FAST with EAP-TNC.

Signed-off-by: Jouni Malinen <j@w1.fi>
2014-05-17 20:05:55 +03:00

29 lines
438 B
Bash
Executable file

#!/bin/sh
set -e
cd $(dirname $0)
cd ../../wpa_supplicant
if [ ! -e .config ]; then
cp ../tests/hwsim/example-wpa_supplicant.config .config
fi
make clean
make -j8
cd ../hostapd
if [ ! -e .config ]; then
cp ../tests/hwsim/example-hostapd.config .config
fi
make clean
make -j8 hostapd hlr_auc_gw
cd ../wlantest
make clean
make -j8
cd ../mac80211_hwsim/tools
make clean
make -j8
cd ../../tests/hwsim/tnc
make clean
make -j8
cd ..