From 955781232e5f35e7afcf1a3dd767623ea19cf5b8 Mon Sep 17 00:00:00 2001 From: Kim Shrier Date: Tue, 28 Apr 2026 00:47:42 -0600 Subject: [PATCH] builder: prevent coroutines_runtime_test on FreeBSD --- vlib/v/builder/coroutines_runtime_test.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vlib/v/builder/coroutines_runtime_test.v b/vlib/v/builder/coroutines_runtime_test.v index a62edc57269666..6252442e4ef022 100644 --- a/vlib/v/builder/coroutines_runtime_test.v +++ b/vlib/v/builder/coroutines_runtime_test.v @@ -5,7 +5,8 @@ import v.ast import v.pref fn test_ensure_imported_coroutines_runtime_downloads_photonwrapper() { - $if windows { + $if !macos && !linux { + // coroutines are only supported on macOS & Linux — see pref.ensure_coroutines_runtime return } test_root := os.join_path(os.vtmp_dir(), 'v_builder_coroutines_runtime')