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
|
||||
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"
|
||||
|
|
Loading…
Reference in New Issue