mirror of https://github.com/ArduPilot/ardupilot
Tools: build_ci.sh: correct quoting of space-containing value
May be "Unit Tests"
This commit is contained in:
parent
169b7df614
commit
d0210f7b89
|
@ -69,13 +69,13 @@ function run_autotest() {
|
||||||
if [ $c_compiler == "clang" ]; then
|
if [ $c_compiler == "clang" ]; then
|
||||||
w="$w --check-c-compiler=clang --check-cxx-compiler=clang++"
|
w="$w --check-c-compiler=clang --check-cxx-compiler=clang++"
|
||||||
fi
|
fi
|
||||||
if [ $NAME == "Rover" ]; then
|
if [ "$NAME" == "Rover" ]; then
|
||||||
w="$w --enable-math-check-indexes"
|
w="$w --enable-math-check-indexes"
|
||||||
fi
|
fi
|
||||||
if [ "x$CI_BUILD_DEBUG" != "x" ]; then
|
if [ "x$CI_BUILD_DEBUG" != "x" ]; then
|
||||||
w="$w --debug"
|
w="$w --debug"
|
||||||
fi
|
fi
|
||||||
if [ $NAME == "Examples" ]; then
|
if [ "$NAME" == "Examples" ]; then
|
||||||
w="$w --speedup=5 --timeout=14400 --debug --no-clean"
|
w="$w --speedup=5 --timeout=14400 --debug --no-clean"
|
||||||
fi
|
fi
|
||||||
Tools/autotest/autotest.py --show-test-timings --waf-configure-args="$w" "$BVEHICLE" "$RVEHICLE"
|
Tools/autotest/autotest.py --show-test-timings --waf-configure-args="$w" "$BVEHICLE" "$RVEHICLE"
|
||||||
|
|
Loading…
Reference in New Issue