remove exclusion of weak-test, which works on unix

This commit is contained in:
Lukas Böger 2021-07-20 22:47:03 +01:00
parent 0ae8069a07
commit 287014e3d6

View file

@ -373,9 +373,6 @@ file(GLOB_RECURSE srfi_tests RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/lib
file(GLOB_RECURSE chibi_scheme_tests RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/lib
CONFIGURE_DEPENDS lib/chibi/*-test.sld)
set(testexcludes
chibi/weak-test)
set(win32testexcludes
# Excluded tests
chibi/filesystem-test
@ -399,8 +396,6 @@ foreach(e ${srfi_tests} ${chibi_scheme_tests})
list(APPEND testlibs ${pth}/${nam})
endforeach()
list(REMOVE_ITEM testlibs ${testexcludes})
if(WIN32)
list(REMOVE_ITEM testlibs ${win32testexcludes})
endif()