From 0698243dd1c0d542166019ff51a85895f1e11bc5 Mon Sep 17 00:00:00 2001 From: phosit Date: Fri, 13 Jun 2025 17:59:53 +0200 Subject: [PATCH] Don't skip tests on mac The tests where accidetally skipped on mac because it's treated as BSD. --- source/scriptinterface/tests/test_Module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/scriptinterface/tests/test_Module.h b/source/scriptinterface/tests/test_Module.h index 8384284721..4ea86cca25 100644 --- a/source/scriptinterface/tests/test_Module.h +++ b/source/scriptinterface/tests/test_Module.h @@ -43,7 +43,7 @@ namespace { void ClearFromCache(const VfsPath& path) { -#if OS_BSD +#if OS_BSD && !(OS_MAC || OS_MACOSX) TS_SKIP("On BSD hotload isn't implemented."); #endif