tests: Remove unnecessary "config exists" debug prints from build.sh

This is the common case and these prints do not really help and just
make the output from build.sh less clear.

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2019-08-24 12:18:40 +03:00
parent f3c188fa7d
commit f380464257

View file

@ -45,8 +45,6 @@ echo "Building hostapd"
cd ../../hostapd cd ../../hostapd
if [ ! -e .config -o $force_config -eq 1 ]; then if [ ! -e .config -o $force_config -eq 1 ]; then
cp ../tests/hwsim/example-hostapd.config .config cp ../tests/hwsim/example-hostapd.config .config
else
echo "hostapd config file exists"
fi fi
if [ $use_lcov -eq 1 ]; then if [ $use_lcov -eq 1 ]; then
@ -64,8 +62,6 @@ echo "Building wpa_supplicant"
cd ../wpa_supplicant cd ../wpa_supplicant
if [ ! -e .config -o $force_config -eq 1 ]; then if [ ! -e .config -o $force_config -eq 1 ]; then
cp ../tests/hwsim/example-wpa_supplicant.config .config cp ../tests/hwsim/example-wpa_supplicant.config .config
else
echo "wpa_supplicant config file exists"
fi fi
if [ $use_lcov -eq 1 ]; then if [ $use_lcov -eq 1 ]; then