tools/testbuild.sh: Added a break to the dotest Blacklist and CMake loop

Added break to the dotest Blacklist and CMake loop: it stops at the first match instead of continuing unnecessarily.

Signed-off-by: simbit18 <simbit18@gmail.com>
This commit is contained in:
simbit18
2026-03-12 11:58:10 +01:00
committed by Xiang Xiao
parent 9e55df4eb3
commit 76fe46a6db
+2
View File
@@ -516,6 +516,7 @@ function dotest {
if [[ "${check}" =~ ${re:1}$ ]]; then
echo "Skipping: $1"
skip=1
break
fi
done
@@ -525,6 +526,7 @@ function dotest {
if [[ "${config/\//:}" == "${l}" ]]; then
echo "Cmake in present: $1"
cmake=1
break
fi
done
fi