From 287014e3d64a8219f5cc7e5453607f25f8cbe393 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20B=C3=B6ger?= Date: Tue, 20 Jul 2021 22:47:03 +0100 Subject: [PATCH] remove exclusion of weak-test, which works on unix --- CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ad780572..75e5fedf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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()