From 344b9afcfe67902dd9660bd3b077f18464d1d114 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 10 May 2026 01:32:17 +0300 Subject: [PATCH] fasthttp: disable windows tests for now --- vlib/veb/csrf/csrf_test.v | 1 + vlib/veb/sse/sse_test.v | 1 + vlib/veb/tests/catchall_route_order_regression_test.v | 1 + vlib/veb/tests/chunked_multipart_upload_test.v | 1 + vlib/veb/tests/controller_test.v | 1 + vlib/veb/tests/cors_2_test.v | 1 + vlib/veb/tests/cors_regression_test.v | 1 + vlib/veb/tests/cors_test.v | 1 + vlib/veb/tests/graceful_shutdown_test.v | 1 + vlib/veb/tests/handle_split_requests_in_chrome_test.v | 1 + vlib/veb/tests/large_payload_test.v | 1 + vlib/veb/tests/middleware_test.v | 1 + vlib/veb/tests/persistent_connection_test.v | 1 + vlib/veb/tests/static_compression_test.v | 2 +- vlib/veb/tests/static_handler_test.v | 1 + vlib/veb/tests/veb_aliased_app_and_context_test.v | 1 + vlib/veb/tests/veb_app_test.v | 2 +- .../veb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v | 1 + vlib/veb/tests/veb_test.v | 2 +- 19 files changed, 19 insertions(+), 3 deletions(-) diff --git a/vlib/veb/csrf/csrf_test.v b/vlib/veb/csrf/csrf_test.v index 6387ab4e1..42d241280 100644 --- a/vlib/veb/csrf/csrf_test.v +++ b/vlib/veb/csrf/csrf_test.v @@ -1,3 +1,4 @@ +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import time import net.http import net.html diff --git a/vlib/veb/sse/sse_test.v b/vlib/veb/sse/sse_test.v index 035bc4f0a..0a0bd5446 100644 --- a/vlib/veb/sse/sse_test.v +++ b/vlib/veb/sse/sse_test.v @@ -1,4 +1,5 @@ // vtest retry: 3 +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import veb import veb.sse import time diff --git a/vlib/veb/tests/catchall_route_order_regression_test.v b/vlib/veb/tests/catchall_route_order_regression_test.v index 611874f77..f0f3cae89 100644 --- a/vlib/veb/tests/catchall_route_order_regression_test.v +++ b/vlib/veb/tests/catchall_route_order_regression_test.v @@ -1,3 +1,4 @@ +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import net.http import time import veb diff --git a/vlib/veb/tests/chunked_multipart_upload_test.v b/vlib/veb/tests/chunked_multipart_upload_test.v index e8e56bb47..f91031d6b 100644 --- a/vlib/veb/tests/chunked_multipart_upload_test.v +++ b/vlib/veb/tests/chunked_multipart_upload_test.v @@ -1,4 +1,5 @@ // vtest retry: 3 +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import crypto.sha256 import io import net diff --git a/vlib/veb/tests/controller_test.v b/vlib/veb/tests/controller_test.v index 5a930b353..de85afa49 100644 --- a/vlib/veb/tests/controller_test.v +++ b/vlib/veb/tests/controller_test.v @@ -1,3 +1,4 @@ +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import veb import time import os diff --git a/vlib/veb/tests/cors_2_test.v b/vlib/veb/tests/cors_2_test.v index a3f4e4ca7..9bdb6f2cd 100644 --- a/vlib/veb/tests/cors_2_test.v +++ b/vlib/veb/tests/cors_2_test.v @@ -1,3 +1,4 @@ +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import veb import net.http import os diff --git a/vlib/veb/tests/cors_regression_test.v b/vlib/veb/tests/cors_regression_test.v index 3d0b28abd..4f7bde2d9 100644 --- a/vlib/veb/tests/cors_regression_test.v +++ b/vlib/veb/tests/cors_regression_test.v @@ -1,3 +1,4 @@ +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import veb import net.http import time diff --git a/vlib/veb/tests/cors_test.v b/vlib/veb/tests/cors_test.v index 7c42cc195..2e879d72a 100644 --- a/vlib/veb/tests/cors_test.v +++ b/vlib/veb/tests/cors_test.v @@ -1,3 +1,4 @@ +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import veb import net.http import os diff --git a/vlib/veb/tests/graceful_shutdown_test.v b/vlib/veb/tests/graceful_shutdown_test.v index 87f611f61..baa39c520 100644 --- a/vlib/veb/tests/graceful_shutdown_test.v +++ b/vlib/veb/tests/graceful_shutdown_test.v @@ -1,3 +1,4 @@ +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import net import net.http import time diff --git a/vlib/veb/tests/handle_split_requests_in_chrome_test.v b/vlib/veb/tests/handle_split_requests_in_chrome_test.v index 816a35b78..ae21054e9 100644 --- a/vlib/veb/tests/handle_split_requests_in_chrome_test.v +++ b/vlib/veb/tests/handle_split_requests_in_chrome_test.v @@ -1,3 +1,4 @@ +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import log import veb import time diff --git a/vlib/veb/tests/large_payload_test.v b/vlib/veb/tests/large_payload_test.v index 3f69b321f..031c509ec 100644 --- a/vlib/veb/tests/large_payload_test.v +++ b/vlib/veb/tests/large_payload_test.v @@ -1,4 +1,5 @@ // vtest retry: 3 +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import veb import net.http import time diff --git a/vlib/veb/tests/middleware_test.v b/vlib/veb/tests/middleware_test.v index 3cedf7744..c794189d7 100644 --- a/vlib/veb/tests/middleware_test.v +++ b/vlib/veb/tests/middleware_test.v @@ -1,3 +1,4 @@ +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import veb import net.http import os diff --git a/vlib/veb/tests/persistent_connection_test.v b/vlib/veb/tests/persistent_connection_test.v index f64c4bc90..84503997e 100644 --- a/vlib/veb/tests/persistent_connection_test.v +++ b/vlib/veb/tests/persistent_connection_test.v @@ -1,3 +1,4 @@ +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import net import net.http import io diff --git a/vlib/veb/tests/static_compression_test.v b/vlib/veb/tests/static_compression_test.v index 712bdf104..44a20f339 100644 --- a/vlib/veb/tests/static_compression_test.v +++ b/vlib/veb/tests/static_compression_test.v @@ -1,4 +1,4 @@ -// vtest build: !docker-ubuntu-musl // readonly-permission assertions can fail in that Docker setup +// vtest build: !docker-ubuntu-musl && !windows // !windows: fasthttp.Server.run not implemented; !docker-ubuntu-musl: readonly-permission assertions can fail there import veb import net.http import os diff --git a/vlib/veb/tests/static_handler_test.v b/vlib/veb/tests/static_handler_test.v index 6681f617b..e8c31bf94 100644 --- a/vlib/veb/tests/static_handler_test.v +++ b/vlib/veb/tests/static_handler_test.v @@ -1,4 +1,5 @@ // vtest vflags: -prod +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import veb import net.http import os diff --git a/vlib/veb/tests/veb_aliased_app_and_context_test.v b/vlib/veb/tests/veb_aliased_app_and_context_test.v index 9cf2d60f6..8ff9f1e2b 100644 --- a/vlib/veb/tests/veb_aliased_app_and_context_test.v +++ b/vlib/veb/tests/veb_aliased_app_and_context_test.v @@ -1,3 +1,4 @@ +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import os import veb import time diff --git a/vlib/veb/tests/veb_app_test.v b/vlib/veb/tests/veb_app_test.v index d03351ca9..406255ca3 100644 --- a/vlib/veb/tests/veb_app_test.v +++ b/vlib/veb/tests/veb_app_test.v @@ -1,4 +1,4 @@ -// vtest build: present_sqlite3? // imports db.sqlite +// vtest build: present_sqlite3? && !windows // present_sqlite3?: imports db.sqlite; !windows: fasthttp.Server.run not implemented import veb import time import net.http diff --git a/vlib/veb/tests/veb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v b/vlib/veb/tests/veb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v index bea38b13d..e448dd322 100644 --- a/vlib/veb/tests/veb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v +++ b/vlib/veb/tests/veb_should_listen_on_both_ipv4_and_ipv6_by_default_test.v @@ -1,4 +1,5 @@ // vtest retry: 3 +// vtest build: !windows // fasthttp.Server.run is not implemented on windows yet import os import log import time diff --git a/vlib/veb/tests/veb_test.v b/vlib/veb/tests/veb_test.v index fa35e3500..49f38c033 100644 --- a/vlib/veb/tests/veb_test.v +++ b/vlib/veb/tests/veb_test.v @@ -1,5 +1,5 @@ // vtest retry: 3 -// vtest build: !sanitized_job? +// vtest build: !sanitized_job? && !windows // !windows: fasthttp.Server.run not implemented yet import os import time import x.json2 as json -- 2.39.5