Skip to content

Commit 96751ed

Browse files
authored
tools: revise vtest-self.v: remove dead paths, fix json2 essential test path (#21267)
1 parent b838418 commit 96751ed

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

cmd/tools/vtest-self.v

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const essential_list = [
2727
'vlib/builtin/string_test.v',
2828
'vlib/builtin/sorting_test.v',
2929
'vlib/builtin/gated_array_string_test.v',
30-
'vlib/builtin/array_shrinkage_test.v',
3130
'vlib/builtin/isnil_test.v',
3231
'vlib/builtin/string_match_glob_test.v',
3332
'vlib/builtin/string_strip_margin_test.v',
@@ -81,11 +80,10 @@ const essential_list = [
8180
'vlib/v/gen/native/tests/native_test.v',
8281
'vlib/v/pkgconfig/pkgconfig_test.v',
8382
'vlib/v/slow_tests/inout/compiler_test.v',
84-
'vlib/x/json2/json2_test.v',
83+
'vlib/x/json2/tests/json2_test.v',
8584
]
8685
const skip_test_files = [
8786
'do_not_remove',
88-
'cmd/tools/vdoc/html_tag_escape_test.v', // can't locate local module: markdown
8987
'vlib/context/deadline_test.v', // sometimes blocks
9088
'vlib/context/onecontext/onecontext_test.v', // backtrace_symbols is missing
9189
'vlib/db/mysql/mysql_orm_test.v', // mysql not installed
@@ -165,12 +163,10 @@ const skip_with_fsanitize_memory = [
165163
'vlib/v/tests/orm_create_several_tables_test.v',
166164
'vlib/vweb/tests/vweb_test.v',
167165
'vlib/vweb/csrf/csrf_test.v',
168-
'vlib/vweb/request_test.v',
169166
'vlib/net/http/request_test.v',
170167
'vlib/net/http/response_test.v',
171168
'vlib/vweb/route_test.v',
172169
'vlib/net/websocket/websocket_test.v',
173-
'vlib/crypto/rand/crypto_rand_read_test.v',
174170
'vlib/net/smtp/smtp_test.v',
175171
'vlib/v/tests/websocket_logger_interface_should_compile_test.v',
176172
'vlib/v/tests/fn_literal_type_test.v',
@@ -224,7 +220,6 @@ const skip_on_ubuntu_musl = [
224220
'vlib/net/http/cookie_test.v',
225221
'vlib/net/http/http_test.v',
226222
'vlib/net/http/status_test.v',
227-
'vlib/net/websocket/ws_test.v',
228223
'vlib/db/sqlite/sqlite_test.v',
229224
'vlib/db/sqlite/sqlite_orm_test.v',
230225
'vlib/db/sqlite/sqlite_vfs_lowlevel_test.v',
@@ -293,7 +288,6 @@ const skip_on_windows = [
293288
'vlib/v/tests/orm_sub_struct_test.v',
294289
'vlib/v/tests/orm_joined_tables_select_test.v',
295290
'vlib/v/tests/orm_handle_error_for_select_from_not_created_table_test.v',
296-
'vlib/net/websocket/ws_test.v',
297291
'vlib/net/websocket/websocket_test.v',
298292
'vlib/net/openssl/openssl_compiles_test.c.v',
299293
'vlib/net/http/request_test.v',

0 commit comments

Comments
 (0)