From 2ebaa2ad8e8ddda528fc06f280c042e3da4fa2b0 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Wed, 1 Apr 2026 09:15:09 +0500 Subject: [PATCH] engine: wscript: disable engine tests on macOS temporarily --- engine/wscript | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/engine/wscript b/engine/wscript index 1b38174c..fd81124b 100644 --- a/engine/wscript +++ b/engine/wscript @@ -255,7 +255,8 @@ def build(bld): install_path = bld.env.BINDIR, ) - if bld.env.TESTS: + # the execution stucks on macOS, disable for now + if bld.env.TESTS and Utils.unversioned_sys_platform() != 'darwin': fs_tg = bld.get_tgen_by_name('filesystem_stdio') fs_tg.post() tg = bld.program( @@ -339,7 +340,8 @@ def build(bld): linkflags = linkflags, ) - if bld.env.TESTS: + # the execution stucks on macOS, disable for now + if bld.env.TESTS and Utils.unversioned_sys_platform() != 'darwin': fs_tg = bld.get_tgen_by_name('filesystem_stdio') fs_tg.post() tg = bld.program(source = source,