From f320be690cc14f064d3494f4e53e0c287dc224e9 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 22 Aug 2020 00:52:45 +0200 Subject: [PATCH] x.websocket: skip tests on windows and musl for now --- cmd/tools/vtest-fixed.v | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/tools/vtest-fixed.v b/cmd/tools/vtest-fixed.v index 0f967c5450..e02de6578a 100644 --- a/cmd/tools/vtest-fixed.v +++ b/cmd/tools/vtest-fixed.v @@ -18,6 +18,7 @@ const ( 'vlib/orm/orm_test.v', 'vlib/clipboard/clipboard_test.v', 'vlib/vweb/tests/vweb_test.v', + 'vlib/x/websocket/websocket_test.v', ] skip_on_linux = []string{} skip_on_non_linux = [ @@ -26,6 +27,7 @@ const ( skip_on_windows = [ 'vlib/orm/orm_test.v', 'vlib/net/websocket/ws_test.v', + 'vlib/x/websocket/websocket_test.v', 'vlib/vweb/tests/vweb_test.v', ] skip_on_non_windows = []string{}