mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-28 18:28:23 -05:00
tests: Build test for new fuzzer tools
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
150b9dc547
commit
d005d3647b
19
tests/fuzzing/build-test.sh
Executable file
19
tests/fuzzing/build-test.sh
Executable 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"
|
Loading…
Reference in New Issue
Block a user