0dcf694c87
Preserve --dir parameter after updating Allow more than one copy of a command line parameter in MultiMC Linux runner script no longer changes current directory, which allows '--dir .' Fixed unit tests, removed the obsolete one (for some legacy updater command line params that were also removed) [fixes 63127704]
48 lines
1.1 KiB
CMake
48 lines
1.1 KiB
CMake
|
|
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/..")
|
|
|
|
if (APPLE)
|
|
set(HELPER_SHARED_SOURCES ../StlSymbolsLeopard.cpp)
|
|
endif()
|
|
|
|
# # Create helper binaries for unit tests
|
|
# add_executable(oldapp
|
|
# old_app.cpp
|
|
# ${HELPER_SHARED_SOURCES}
|
|
# )
|
|
# add_executable(newapp
|
|
# new_app.cpp
|
|
# ${HELPER_SHARED_SOURCES}
|
|
# )
|
|
|
|
# Install data files required by unit tests
|
|
set(TEST_FILES
|
|
file_list.xml
|
|
)
|
|
|
|
foreach(TEST_FILE ${TEST_FILES})
|
|
execute_process(
|
|
COMMAND
|
|
"${CMAKE_COMMAND}" -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/${TEST_FILE}" "${CMAKE_CURRENT_BINARY_DIR}"
|
|
)
|
|
endforeach()
|
|
|
|
# Add unit test binaries
|
|
macro(ADD_UPDATER_TEST CLASS)
|
|
set(TEST_TARGET updater_${CLASS})
|
|
unset(srcs)
|
|
list(APPEND srcs ${CLASS}.cpp)
|
|
if (WIN32)
|
|
list(APPEND srcs ${CMAKE_CURRENT_SOURCE_DIR}/test.rc)
|
|
endif()
|
|
add_executable(${TEST_TARGET} ${srcs})
|
|
target_link_libraries(${TEST_TARGET} updatershared)
|
|
add_test(NAME ${TEST_TARGET} COMMAND ${TEST_TARGET})
|
|
if (APPLE)
|
|
set_target_properties(${TEST_TARGET} PROPERTIES LINK_FLAGS "-framework Security -framework Cocoa")
|
|
endif()
|
|
endmacro()
|
|
|
|
add_updater_test(TestParseScript)
|
|
add_updater_test(TestFileUtils)
|