Browse Source

sitl_tests: exclude uorb test from Windows build

Because it was always failing from the beginning on and
we want to make sure no other tests break in the meantime
by running the currently passing tests also on Windows CI.
sbg
Matthias Grob 6 years ago
parent
commit
be16baaa3c
  1. 8
      platforms/posix/cmake/sitl_tests.cmake

8
platforms/posix/cmake/sitl_tests.cmake

@ -43,6 +43,14 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") @@ -43,6 +43,14 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
)
endif()
if (CMAKE_SYSTEM_NAME STREQUAL "CYGWIN")
list(REMOVE_ITEM tests
uorb
)
endif()
message("${tests}")
foreach(test_name ${tests})
configure_file(${PX4_SOURCE_DIR}/posix-configs/SITL/init/test/test_template.in ${PX4_SOURCE_DIR}/posix-configs/SITL/init/test/test_${test_name}_generated)

Loading…
Cancel
Save