diff --git a/tests/fuzzing/build-test.sh b/tests/fuzzing/build-test.sh new file mode 100755 index 000000000..26c94cca8 --- /dev/null +++ b/tests/fuzzing/build-test.sh @@ -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"