1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
|
# See README.md for usage instructions
if (MINGW)
remove_flag("-mwindows")
endif ()
# defines spring_test_compile_fail macro
include(${CMAKE_CURRENT_SOURCE_DIR}/tools/CompileFailTest/CompileFailTest.cmake)
if (UNIX AND (NOT APPLE) AND (NOT MINGW))
find_library(REALTIME_LIBRARY rt)
if (PREFER_STATIC_LIBS AND NOT EXISTS "${REALTIME_LIBRARY}")
message(FATAL_ERROR "librt.[so|a] not found! Needed by std::chrono when statically linked!")
endif ()
else ()
set(REALTIME_LIBRARY "")
endif ()
include_directories(${CMAKE_BINARY_DIR}/src-generated/engine)
set(ENGINE_SOURCE_DIR "${CMAKE_SOURCE_DIR}/rts")
include_directories(${ENGINE_SOURCE_DIR})
include_directories(${ENGINE_SOURCE_DIR}/lib/asio/include)
add_definitions(-DSYNCCHECK -DUNIT_TEST)
remove_definitions(-DTHREADPOOL)
if (WIN32)
execute_process(COMMAND ping -6 ::1 -n 1
RESULT_VARIABLE IPV6_RET
ERROR_QUIET)
else ()
execute_process(COMMAND ping6 ::1 -c 1
RESULT_VARIABLE IPV6_RET
ERROR_QUIET)
endif ()
if (NOT ${IPV6_RET} EQUAL 0)
add_definitions(-DNO_IPV6)
message(STATUS "No ipv6 support, disabling test")
endif ()
set(test_Log_sources
"${ENGINE_SOURCE_DIR}/System/SafeCStrings.c"
"${ENGINE_SOURCE_DIR}/System/Log/Backend.cpp"
"${ENGINE_SOURCE_DIR}/System/Log/LogUtil.c"
"${ENGINE_SOURCE_DIR}/System/Log/DefaultFilter.cpp"
"${ENGINE_SOURCE_DIR}/System/Log/DefaultFormatter.cpp"
"${ENGINE_SOURCE_DIR}/System/Log/FramePrefixer.cpp"
"${ENGINE_SOURCE_DIR}/System/Log/ConsoleSink.cpp"
"${ENGINE_SOURCE_DIR}/System/Log/StreamSink.cpp"
)
add_custom_target(tests)
add_custom_target(check ${CMAKE_CTEST_COMMAND} --output-on-failure -V
DEPENDS engine-headless)
add_custom_target(install-tests)
macro (add_spring_test target sources libraries flags)
add_test(NAME test${target} COMMAND test_${target})
add_dependencies(tests test_${target})
add_dependencies(check test_${target})
add_dependencies(install-tests test_${target})
add_executable(test_${target} EXCLUDE_FROM_ALL ${sources})
target_link_libraries(test_${target} ${libraries})
set_target_properties(test_${target} PROPERTIES COMPILE_FLAGS "${flags}")
#install(TARGETS test_${target} DESTINATION ${BINDIR})
endmacro()
################################################################################
### UDPListener
# disabled for travis: https://springrts.com/mantis/view.php?id=5014
if(NOT DEFINED ENV{CI})
set(test_name UDPListener)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/Net/TestUDPListener.cpp"
"${ENGINE_SOURCE_DIR}/Game/GameVersion.cpp"
"${ENGINE_SOURCE_DIR}/Net/Protocol/BaseNetProtocol.cpp"
"${ENGINE_SOURCE_DIR}/System/CRC.cpp"
"${ENGINE_SOURCE_DIR}/System/Misc/SpringTime.cpp"
## HACK:
## the engineSystemNet lib is compiled *without* -DUNIT_TEST
## it includes UDPConnection which depends on ConfigHandler
## in normal builds, but fails to link when used as part of
## UT so we compile it again
"${ENGINE_SOURCE_DIR}/System/Net/UDPConnection.cpp"
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/NullGlobalConfig.cpp"
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/Nullerrorhandler.cpp"
${sources_engine_System_Threading}
${test_Log_sources}
)
set(test_libs
engineSystemNet
${REALTIME_LIBRARY}
${WINMM_LIBRARY}
${WS2_32_LIBRARY}
7zip
)
add_spring_test(${test_name} "${test_src}" "${test_libs}" "")
add_dependencies(test_UDPListener generateVersionFiles)
endif ()
################################################################################
### ILog
set(test_name ILog)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/Log/TestILog.cpp"
"${ENGINE_SOURCE_DIR}/System/Log/FileSink.cpp"
"${ENGINE_SOURCE_DIR}/System/Log/OutputDebugStringSink.cpp"
${test_Log_sources}
)
set(test_libs
""
)
add_spring_test(${test_name} "${test_src}" "${test_libs}" "")
################################################################################
### SyncedPrimitive
set(test_name SyncedPrimitive)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/Sync/TestSyncedPrimitive.cpp"
"${ENGINE_SOURCE_DIR}/System/Sync/SyncChecker.cpp"
)
set(test_libs
""
)
add_spring_test(${test_name} "${test_src}" "${test_libs}" "")
################################################################################
### RectangleOverlapHandler
set(test_name RectangleOverlapHandler)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/Misc/RectangleOverlapHandler.cpp"
"${ENGINE_SOURCE_DIR}/System/Misc/RectangleOverlapHandler.cpp"
${test_Log_sources}
)
set(test_libs
""
)
add_spring_test(${test_name} "${test_src}" "${test_libs}" "-DNOT_USING_CREG")
################################################################################
### Float3
set(test_name Float3)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/testFloat3.cpp"
"${ENGINE_SOURCE_DIR}/System/float3.cpp"
"${ENGINE_SOURCE_DIR}/System/float4.cpp"
"${ENGINE_SOURCE_DIR}/System/Misc/SpringTime.cpp"
"${ENGINE_SOURCE_DIR}/System/StringHash.cpp"
"${ENGINE_SOURCE_DIR}/System/TimeProfiler.cpp"
${sources_engine_System_Threading}
${test_Log_sources}
)
set(test_libs
${WINMM_LIBRARY}
)
add_spring_test(${test_name} "${test_src}" "${test_libs}" "-DNOT_USING_CREG -DNOT_USING_STREFLOP -DBUILDING_AI")
################################################################################
### Matrix44f
set(test_name Matrix44f)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/testMatrix44f.cpp"
"${ENGINE_SOURCE_DIR}/System/Matrix44f.cpp"
"${ENGINE_SOURCE_DIR}/System/float3.cpp"
"${ENGINE_SOURCE_DIR}/System/float4.cpp"
"${ENGINE_SOURCE_DIR}/System/StringHash.cpp"
"${ENGINE_SOURCE_DIR}/System/TimeProfiler.cpp"
"${ENGINE_SOURCE_DIR}/System/Misc/SpringTime.cpp"
${sources_engine_System_Threading}
${test_Log_sources}
)
set(test_libs
${WINMM_LIBRARY}
)
add_spring_test(${test_name} "${test_src}" "${test_libs}" "-DNOT_USING_CREG -DNOT_USING_STREFLOP -DBUILDING_AI")
################################################################################
### Matrix44fRotation
set(test_name Matrix44fRotation)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/testRotationMatrix44f.cpp"
"${ENGINE_SOURCE_DIR}/System/Matrix44f.cpp"
"${ENGINE_SOURCE_DIR}/System/float3.cpp"
"${ENGINE_SOURCE_DIR}/System/float4.cpp"
${test_Log_sources}
)
set(test_libs
${WINMM_LIBRARY}
)
add_spring_test(${test_name} "${test_src}" "${test_libs}" "-DNOT_USING_CREG -DNOT_USING_STREFLOP -DBUILDING_AI")
################################################################################
### SpringTime
set(test_name SpringTime)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/Misc/testSpringTime.cpp"
"${ENGINE_SOURCE_DIR}/System/Misc/SpringTime.cpp"
"${ENGINE_SOURCE_DIR}/System/StringHash.cpp"
"${ENGINE_SOURCE_DIR}/System/TimeProfiler.cpp"
${sources_engine_System_Threading}
${test_Log_sources}
)
set(test_libs
${REALTIME_LIBRARY}
${WINMM_LIBRARY}
)
set(test_flags "-DNOT_USING_CREG -DNOT_USING_STREFLOP -DBUILDING_AI")
add_spring_test(${test_name} "${test_src}" "${test_libs}" "${test_flags}")
################################################################################
### BitwiseEnum
set(test_name BitwiseEnum)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/Misc/TestBitwiseEnum.cpp"
)
set(test_libs
""
)
# positive tests (should compile fine)
add_spring_test(${test_name} "${test_src}" "${test_libs}" "")
add_dependencies(tests test_BitwiseEnum)
# negative tests (must not compile)
spring_test_compile_fail(testBitwiseEnum_fail1 ${test_src} "-DTEST1")
spring_test_compile_fail(testBitwiseEnum_fail2 ${test_src} "-DTEST2")
spring_test_compile_fail(testBitwiseEnum_fail3 ${test_src} "-DTEST3")
################################################################################
### FileSystem
set(test_name FileSystem)
set(test_src
"${ENGINE_SOURCE_DIR}/System/FileSystem/FileSystem.cpp"
"${ENGINE_SOURCE_DIR}/System/FileSystem/FileSystemAbstraction.cpp"
"${ENGINE_SOURCE_DIR}/System/StringUtil.cpp"
"${ENGINE_SOURCE_DIR}/Game/GameVersion.cpp"
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/FileSystem/TestFileSystem.cpp"
${test_Log_sources}
)
set(test_libs
""
)
add_spring_test(${test_name} "${test_src}" "${test_libs}" "")
add_dependencies(test_${test_name} generateVersionFiles)
################################################################################
### LuaSocketRestrictions
set(test_name LuaSocketRestrictions)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/lib/luasocket/TestRestriction.cpp"
"${ENGINE_SOURCE_DIR}/lib/luasocket/src/restrictions.cpp"
${test_Log_sources}
)
set(test_libs
""
)
add_spring_test(${test_name} "${test_src}" "${test_libs}" "-DTEST")
if (NOT NO_CREG)
################################################################################
### CREG
add_test(NAME testCreg COMMAND ${CMAKE_BINARY_DIR}/spring-headless${CMAKE_EXECUTABLE_SUFFIX} --test-creg)
### CREG LoadSave
set(test_name LoadSave)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/LoadSave/testCregLoadSave.cpp"
"${ENGINE_SOURCE_DIR}/System/creg/Serializer.cpp"
"${ENGINE_SOURCE_DIR}/System/creg/VarTypes.cpp"
"${ENGINE_SOURCE_DIR}/System/creg/creg.cpp"
${test_Log_sources}
)
set(test_libs
""
)
add_spring_test(${test_name} "${test_src}" "${test_libs}" -"DTEST")
###
################################################################################
endif ()
################################################################################
### UnitSync
set(test_name UnitSync)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/unitsync/testUnitSync.cpp"
"${ENGINE_SOURCE_DIR}/Lua/LuaMemPool.cpp"
## -DUNITSYNC is not passed onto VFS code, which references globalConfig
"${ENGINE_SOURCE_DIR}/System/GlobalConfig.cpp"
"${ENGINE_SOURCE_DIR}/System/Misc/SpringTime.cpp"
${sources_engine_System_Threading}
${test_Log_sources}
)
set(test_libs
${CMAKE_DL_LIBS}
unitsync
)
set(test_flags "-DUNITSYNC")
add_spring_test(${test_name} "${test_src}" "${test_libs}" "${test_flags}")
add_dependencies(test_${test_name} springcontent.sdz)
################################################################################
### ThreadPool
set(test_name ThreadPool)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/testThreadPool.cpp"
"${ENGINE_SOURCE_DIR}/System/Threading/ThreadPool.cpp"
"${ENGINE_SOURCE_DIR}/System/Misc/SpringTime.cpp"
"${ENGINE_SOURCE_DIR}/System/Platform/CpuID.cpp"
"${ENGINE_SOURCE_DIR}/System/Platform/Threading.cpp"
${sources_engine_System_Threading}
${test_Log_sources}
)
set(test_libs
${WINMM_LIBRARY}
)
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
list(APPEND test_libs atomic)
endif ()
add_spring_test(${test_name} "${test_src}" "${test_libs}" "-DTHREADPOOL -DUNITSYNC")
################################################################################
### Mutex
set(test_name Mutex)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/other/testMutex.cpp"
"${ENGINE_SOURCE_DIR}/System/Misc/SpringTime.cpp"
"${ENGINE_SOURCE_DIR}/System/StringHash.cpp"
"${ENGINE_SOURCE_DIR}/System/TimeProfiler.cpp"
${sources_engine_System_Threading}
${test_Log_sources}
)
set(test_libs
${WINMM_LIBRARY}
${WS2_32_LIBRARY}
)
set(test_flags "-DNOT_USING_CREG -DNOT_USING_STREFLOP -DBUILDING_AI")
add_spring_test(${test_name} "${test_src}" "${test_libs}" "${test_flags}")
################################################################################
### Ellipsoid
set(test_name Ellipsoid)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/Sim/Misc/testEllipsoid.cpp"
${test_Log_sources}
)
set(test_libs
""
)
set(test_flags "-DNOT_USING_CREG -DNOT_USING_STREFLOP -DBUILDING_AI")
add_spring_test(${test_name} "${test_src}" "${test_libs}" "${test_flags}")
################################################################################
### QuadField
set(test_name QuadField)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/Sim/Misc/testQuadField.cpp"
"${ENGINE_SOURCE_DIR}/Sim/Misc/QuadField.cpp"
${test_Log_sources}
)
set(test_libs
""
)
set(test_flags "-DNOT_USING_CREG -DNOT_USING_STREFLOP -DBUILDING_AI")
add_spring_test(${test_name} "${test_src}" "${test_libs}" "${test_flags}")
################################################################################
### Printf
set(test_name Printf)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/other/testPrintf.cpp"
"${ENGINE_SOURCE_DIR}/Lua/LuaMemPool.cpp"
"${ENGINE_SOURCE_DIR}/System/Misc/SpringTime.cpp"
"${ENGINE_SOURCE_DIR}/System/StringHash.cpp"
"${ENGINE_SOURCE_DIR}/System/TimeProfiler.cpp"
${sources_engine_System_Threading}
${test_Log_sources}
)
set(test_libs
streflop
lua
${WINMM_LIBRARY}
headlessStubs
)
set(test_flags "-DNOT_USING_CREG -DSTREFLOP_SSE -DBUILDING_AI")
add_spring_test(${test_name} "${test_src}" "${test_libs}" "${test_flags}")
target_include_directories(test_${test_name} PRIVATE ${ENGINE_SOURCE_DIR}/lib/lua/include)
################################################################################
### OpenGL
set(test_name GLContextCreation)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/other/testGLContextCreation.cpp"
${test_Log_sources}
)
set(test_libs ${OPENGL_gl_LIBRARY} ${GLEW_LIBRARIES} ${SDL2_LIBRARY})
set(test_flags "-DNOT_USING_CREG -DSTREFLOP_SSE -DBUILDING_AI")
add_spring_test(${test_name} "${test_src}" "${test_libs}" "${test_flags}")
target_include_directories(test_${test_name} PRIVATE ${SDL2_INCLUDE_DIR} ${GLEW_INCLUDE_DIR})
################################################################################
### SQRT
set(test_name SQRT)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/testSQRT.cpp"
"${ENGINE_SOURCE_DIR}/System/Misc/SpringTime.cpp"
"${ENGINE_SOURCE_DIR}/System/StringHash.cpp"
"${ENGINE_SOURCE_DIR}/System/TimeProfiler.cpp"
${sources_engine_System_Threading}
${test_Log_sources}
)
set(test_libs
streflop
${WINMM_LIBRARY}
)
set(test_flags "-DNOT_USING_CREG -DSTREFLOP_SSE -DBUILDING_AI")
add_spring_test(${test_name} "${test_src}" "${test_libs}" "${test_flags}")
################################################################################
### EventClient
set(test_name EventClient)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/EventClient.cpp"
${test_Log_sources}
)
set(test_libs
""
)
add_spring_test(${test_name} "${test_src}" "${test_libs}" "")
################################################################################
### SerializeLuaState
set(test_name SerializeLuaState)
set(test_src
"${CMAKE_CURRENT_SOURCE_DIR}/engine/System/testSerializeLuaState.cpp"
"${ENGINE_SOURCE_DIR}/Lua/LuaMemPool.cpp"
"${ENGINE_SOURCE_DIR}/System/Misc/SpringTime.cpp"
"${ENGINE_SOURCE_DIR}/System/creg/Serializer.cpp"
"${ENGINE_SOURCE_DIR}/System/creg/VarTypes.cpp"
"${ENGINE_SOURCE_DIR}/System/creg/SerializeLuaState.cpp"
"${ENGINE_SOURCE_DIR}/System/creg/creg.cpp"
${sources_engine_System_Threading}
${test_Log_sources}
)
set(test_libs
lua
headlessStubs
)
set(test_flags "-DNOT_USING_STREFLOP")
add_spring_test(${test_name} "${test_src}" "${test_libs}" "${test_flags}")
target_include_directories(test_${test_name} PRIVATE ${ENGINE_SOURCE_DIR}/lib/lua/include)
################################################################################
add_subdirectory(headercheck)
|