From eb9448e59ef1e6de3e2ad094b047eb2932701221 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 28 Apr 2020 15:24:41 +0300 Subject: [PATCH] tests: fix CI, by skipping http_test.v again. --- cmd/tools/vtest-fixed.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/tools/vtest-fixed.v b/cmd/tools/vtest-fixed.v index ace68a62ba..1f9e09d773 100644 --- a/cmd/tools/vtest-fixed.v +++ b/cmd/tools/vtest-fixed.v @@ -9,13 +9,14 @@ const ( 'vlib/arrays/arrays_test.v', 'vlib/eventbus/eventbus_test.v', 'vlib/json/json_test.v', - 'vlib/net/http/http_httpbin_test.v', 'vlib/v/tests/enum_bitfield_test.v', 'vlib/v/tests/num_lit_call_method_test.v', 'vlib/v/tests/pointers_test.v', 'vlib/v/tests/type_test.v', 'vlib/v/tests/valgrind/valgrind_test.v', // ubuntu-musl only 'vlib/v/tests/pointers_str_test.v', + 'vlib/net/http/http_httpbin_test.v', // fails on ubuntu-musl, because of missing openssl + 'vlib/net/http/http_test.v', // fails on ubuntu-musl, because of missing openssl 'vlib/net/http/cookie_test.v', // ok, but should be skipped on ubuntu-musl, since there is no openssl there 'vlib/clipboard/clipboard_test.v', 'vlib/sqlite/sqlite_test.v',