diff --git a/Tools/scripts/build_ci.sh b/Tools/scripts/build_ci.sh index 4a5e2ece28..15c61313b8 100755 --- a/Tools/scripts/build_ci.sh +++ b/Tools/scripts/build_ci.sh @@ -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"