From 3ce587085a91575ac2d8452ab9f458afdfdd98b4 Mon Sep 17 00:00:00 2001 From: Turiiya <34311583+ttytm@users.noreply.github.com> Date: Sun, 14 Apr 2024 22:25:52 +0200 Subject: [PATCH] tests: enable again http_httpbin_test.v, since net.http now uses mbedtls (#21279) --- cmd/tools/vtest-self.v | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cmd/tools/vtest-self.v b/cmd/tools/vtest-self.v index 3e24ea00b94482..22bc603d6b5d88 100644 --- a/cmd/tools/vtest-self.v +++ b/cmd/tools/vtest-self.v @@ -127,7 +127,6 @@ const skip_with_fsanitize_memory = [ 'vlib/net/http/cookie_test.v', 'vlib/net/http/http_test.v', 'vlib/net/http/status_test.v', - 'vlib/net/http/http_httpbin_test.v', 'vlib/net/http/header_test.v', 'vlib/net/http/server_test.v', 'vlib/net/udp_test.v', @@ -218,7 +217,6 @@ const skip_on_ubuntu_musl = [ 'do_not_remove', //'vlib/v/gen/js/jsgen_test.v', 'vlib/net/http/cookie_test.v', - 'vlib/net/http/http_test.v', 'vlib/net/http/status_test.v', 'vlib/db/sqlite/sqlite_test.v', 'vlib/db/sqlite/sqlite_orm_test.v', @@ -255,7 +253,6 @@ const skip_on_ubuntu_musl = [ 'vlib/net/http/request_test.v', 'vlib/vweb/route_test.v', 'vlib/net/websocket/websocket_test.v', - 'vlib/net/http/http_httpbin_test.v', 'vlib/net/http/header_test.v', 'vlib/net/http/server_test.v', 'vlib/net/http/response_test.v', @@ -338,8 +335,6 @@ const skip_on_sandboxed_packaging = [ 'vlib/v/gen/c/coutput_test.v', ] -// Note: musl misses openssl, thus the http tests can not be done there -// Note: http_httpbin_test.v: fails with 'cgen error: json: map_string_string is not struct' fn main() { vexe := os.real_path(os.getenv_opt('VEXE') or { @VEXE }) vroot := os.dir(vexe)