Retro68/AutomatedTests/CMakeLists.txt

35 lines
1.0 KiB
CMake
Raw Normal View History

2017-10-01 00:42:02 +00:00
enable_testing()
2017-10-03 09:57:56 +00:00
set(RETRO68_LAUNCH_METHOD classic CACHE String "How to launch Mac applications (for automated testing)")
set(RETRO68_TEST_CONFIG "--timeout=4")
find_program(LAUNCH_APPL LaunchAPPL PATH "${CMAKE_INSTALL_PREFIX}/../bin/")
2017-10-03 09:57:56 +00:00
function(test FILE)
get_filename_component(NAME ${FILE} NAME_WE)
add_application(${NAME} ${FILE} Test.h Test.c)
add_test(NAME ${NAME} COMMAND ${LAUNCH_APPL}
-e ${RETRO68_LAUNCH_METHOD} ${RETRO68_TEST_CONFIG} ${ARGN} ${NAME}.bin)
endfunction()
if(CMAKE_SYSTEM_NAME MATCHES Retro68)
2017-10-03 09:57:56 +00:00
test(ReallyEmpty.c)
set_target_properties(ReallyEmpty PROPERTIES LINK_FLAGS "-Wl,-gc-sections -Wl,--mac-single")
endif()
2017-10-01 00:42:02 +00:00
2017-10-03 09:57:56 +00:00
test(Empty.c)
2017-10-01 00:42:02 +00:00
2017-10-03 09:57:56 +00:00
test(File.c)
2017-10-01 00:42:02 +00:00
set_tests_properties(File PROPERTIES PASS_REGULAR_EXPRESSION "OK")
2017-10-03 09:57:56 +00:00
test(Timeout.c)
set_tests_properties(Timeout PROPERTIES PASS_REGULAR_EXPRESSION "One\nTwo")
test(Log.c)
set_tests_properties(Log PROPERTIES PASS_REGULAR_EXPRESSION "One\nTwo\nThree")
2017-10-03 09:57:56 +00:00
test(Init.cc)
set_tests_properties(Init PROPERTIES PASS_REGULAR_EXPRESSION "constructor\nmain\ndestructor")