tests: Build test for new fuzzer tools

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2019-06-01 16:37:53 +03:00
parent 150b9dc547
commit d005d3647b

19
tests/fuzzing/build-test.sh Executable file
View file

@ -0,0 +1,19 @@
#!/bin/sh
error()
{
echo "Build test failed"
exit 1
}
for i in *; do
if [ -d $i ]; then
cd $i
make clean
make -j8 || error
make clean
cd ..
fi
done
echo "Build test succeeded"