]> git.ipfire.org Git - thirdparty/hostap.git/blob - tests/fuzzing/build-test.sh
tests: sigma_dut controlled STA and beacon protection
[thirdparty/hostap.git] / tests / fuzzing / build-test.sh
1 #!/bin/sh
2
3 error()
4 {
5 echo "Build test failed"
6 exit 1
7 }
8
9 for i in *; do
10 if [ -d $i ]; then
11 cd $i
12 make clean
13 make -j8 || error
14 make clean
15 cd ..
16 fi
17 done
18
19 echo "Build test succeeded"