Skip to content

Commit

Permalink
Disable druntime test 'gc' for shared-only druntime
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke committed Feb 28, 2019
1 parent cfdd1aa commit a0d941b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runtime/StandaloneDRuntimeTests.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ get_subdirs(testnames ${PROJECT_SOURCE_DIR}/druntime/test)
if(${BUILD_SHARED_LIBS} STREQUAL "OFF")
list(REMOVE_ITEM testnames shared)
elseif(${BUILD_SHARED_LIBS} STREQUAL "ON")
list(REMOVE_ITEM testnames cycles)
# gc: replaces druntime modules at link-time and so requires a static druntime
list(REMOVE_ITEM testnames cycles gc)
endif()
list(REMOVE_ITEM testnames uuid) # MSVC only, custom Makefile (win64.mak)

Expand Down

0 comments on commit a0d941b

Please sign in to comment.