This commit limits which tests run on which ARCH to allow all tests to
pass on CI.
* Qualify the FTDI tests with (FTDI4222 AND USBPLAT)
* Qualify the IO init tests with (DETECTED_ARCH == "MOCK")
* Renamed all unit tests to start with 'test_unit_' to facilitate
grouping with tab completion (or any other type of sorting)
* Updated docker targets with new unit test target name
Signed-off-by: Noel Eck <noel.eck@intel.com>
47 lines
2.1 KiB
CMake
47 lines
2.1 KiB
CMake
# For now, Google Test is NOT required */
|
|
find_package(GTest)
|
|
|
|
# If not found, print a status message and return
|
|
if(NOT GTEST_FOUND)
|
|
message(STATUS "Install Google Test to enable additional unit testing")
|
|
return ()
|
|
endif()
|
|
|
|
# Unit tests - C common header methods
|
|
add_executable(test_unit_common_h api/api_common_h_unit.cxx)
|
|
target_link_libraries(test_unit_common_h GTest::GTest GTest::Main mraa)
|
|
target_include_directories(test_unit_common_h
|
|
PRIVATE "${CMAKE_SOURCE_DIR}" "${CMAKE_SOURCE_DIR}/api" "${CMAKE_SOURCE_DIR}/api/mraa")
|
|
gtest_add_tests(test_unit_common_h "" AUTO)
|
|
list(APPEND GTEST_UNIT_TEST_TARGETS test_unit_common_h)
|
|
|
|
# Unit tests - C++ common header methods
|
|
add_executable(test_unit_common_hpp api/api_common_hpp_unit.cxx)
|
|
target_link_libraries(test_unit_common_hpp GTest::GTest GTest::Main mraa)
|
|
target_include_directories(test_unit_common_hpp PRIVATE "${CMAKE_SOURCE_DIR}/api")
|
|
gtest_add_tests(test_unit_common_hpp "" AUTO)
|
|
list(APPEND GTEST_UNIT_TEST_TARGETS test_unit_common_hpp)
|
|
|
|
if (FTDI4222 AND USBPLAT)
|
|
# Unit tests - Test platform extenders (as much as possible)
|
|
add_executable(test_unit_ftdi4222 platform_extender/platform_extender.cxx)
|
|
target_link_libraries(test_unit_ftdi4222 GTest::GTest GTest::Main mraa-platform-ft4222 dl)
|
|
target_include_directories(test_unit_ftdi4222 PRIVATE "${PROJECT_SOURCE_DIR}/api"
|
|
"${PROJECT_SOURCE_DIR}/api/mraa"
|
|
"${PROJECT_SOURCE_DIR}/include")
|
|
gtest_add_tests(test_unit_ftdi4222 "" AUTO)
|
|
list(APPEND GTEST_UNIT_TEST_TARGETS test_unit_ftdi4222)
|
|
endif ()
|
|
|
|
# Unit tests - test C initio header methods on MOCK platform only
|
|
if (DETECTED_ARCH STREQUAL "MOCK")
|
|
add_executable(test_unit_ioinit_h api/mraa_initio_h_unit.cxx)
|
|
target_link_libraries(test_unit_ioinit_h GTest::GTest GTest::Main mraa)
|
|
target_include_directories(test_unit_ioinit_h PRIVATE "${CMAKE_SOURCE_DIR}/api")
|
|
gtest_add_tests(test_unit_ioinit_h "" AUTO)
|
|
list(APPEND GTEST_UNIT_TEST_TARGETS test_unit_ioinit_h)
|
|
endif()
|
|
|
|
# Add a target for all unit tests
|
|
add_custom_target(test_unit_all ALL DEPENDS ${GTEST_UNIT_TEST_TARGETS})
|