You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hostap/tests/build/run-build-tests.sh

21 lines
387 B
Bash

#!/bin/bash
DIR=`mktemp -d`
pushd ../.. > /dev/null
git archive --format=tar --prefix=hostap-build/ HEAD > $DIR/hostap-build.tar
popd > /dev/null
echo "Build test directory: $DIR"
echo
for i in build-hostapd-*.config; do
./build-hostapd.sh $DIR $i
done
for i in build-wpa_supplicant-*.config; do
./build-wpa_supplicant.sh $DIR $i
done
echo
echo "Build test directory: $DIR"