mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vweb: refactor routing logic (#9025)
This commit is contained in:
@ -19,6 +19,7 @@ const (
|
||||
'vlib/v/tests/orm_sub_struct_test.v',
|
||||
'vlib/vweb/tests/vweb_test.v',
|
||||
'vlib/vweb/request_test.v',
|
||||
'vlib/vweb/route_test.v',
|
||||
'vlib/x/websocket/websocket_test.v',
|
||||
]
|
||||
skip_with_fsanitize_address = [
|
||||
@ -138,6 +139,7 @@ const (
|
||||
'vlib/v/tests/working_with_an_empty_struct_test.v',
|
||||
'vlib/vweb/tests/vweb_test.v',
|
||||
'vlib/vweb/request_test.v',
|
||||
'vlib/vweb/route_test.v',
|
||||
'vlib/x/json2/any_test.v',
|
||||
'vlib/x/json2/decoder_test.v',
|
||||
'vlib/x/json2/json2_test.v',
|
||||
@ -312,6 +314,7 @@ const (
|
||||
'vlib/v/vcache/vcache_test.v',
|
||||
'vlib/vweb/tests/vweb_test.v',
|
||||
'vlib/vweb/request_test.v',
|
||||
'vlib/vweb/route_test.v',
|
||||
'vlib/v/compiler_errors_test.v',
|
||||
'vlib/v/tests/map_enum_keys_test.v',
|
||||
'vlib/v/tests/tmpl_test.v',
|
||||
@ -341,6 +344,7 @@ const (
|
||||
'vlib/clipboard/clipboard_test.v',
|
||||
'vlib/vweb/tests/vweb_test.v',
|
||||
'vlib/vweb/request_test.v',
|
||||
'vlib/vweb/route_test.v',
|
||||
'vlib/x/websocket/websocket_test.v',
|
||||
'vlib/net/http/http_httpbin_test.v',
|
||||
'vlib/net/http/header_test.v',
|
||||
@ -357,6 +361,7 @@ const (
|
||||
'vlib/x/websocket/websocket_test.v',
|
||||
'vlib/vweb/tests/vweb_test.v',
|
||||
'vlib/vweb/request_test.v',
|
||||
'vlib/vweb/route_test.v',
|
||||
]
|
||||
skip_on_non_windows = []string{}
|
||||
skip_on_macos = []string{}
|
||||
|
Reference in New Issue
Block a user