Tools: build_ci.sh: correct quoting of space-containing value

May be "Unit Tests"
This commit is contained in:
Peter Barker 2022-08-02 12:27:09 +10:00 committed by Andrew Tridgell
parent 169b7df614
commit d0210f7b89
1 changed files with 2 additions and 2 deletions

View File

@ -69,13 +69,13 @@ function run_autotest() {
if [ $c_compiler == "clang" ]; then
w="$w --check-c-compiler=clang --check-cxx-compiler=clang++"
fi
if [ $NAME == "Rover" ]; then
if [ "$NAME" == "Rover" ]; then
w="$w --enable-math-check-indexes"
fi
if [ "x$CI_BUILD_DEBUG" != "x" ]; then
w="$w --debug"
fi
if [ $NAME == "Examples" ]; then
if [ "$NAME" == "Examples" ]; then
w="$w --speedup=5 --timeout=14400 --debug --no-clean"
fi
Tools/autotest/autotest.py --show-test-timings --waf-configure-args="$w" "$BVEHICLE" "$RVEHICLE"