1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

net.websocket: swap unsafe use of nil for a safe default value (#15836)

This commit is contained in:
Alfie Ranstead
2022-09-22 06:00:03 +01:00
committed by GitHub
parent 41dbd12bc4
commit 27305d1a5f
5 changed files with 84 additions and 6 deletions

View File

@@ -165,6 +165,7 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession {
skip_files << 'examples/websocket/ping.v' // requires OpenSSL
skip_files << 'examples/websocket/client-server/client.v' // requires OpenSSL
skip_files << 'examples/websocket/client-server/server.v' // requires OpenSSL
skip_files << 'vlib/v/tests/websocket_logger_interface_should_compile_test.v' // requires OpenSSL
skip_files << 'examples/vweb_orm_jwt' // requires mysql
$if tinyc {
skip_files << 'examples/database/orm.v' // try fix it

View File

@@ -135,9 +135,11 @@ const (
'vlib/net/websocket/websocket_test.v',
'vlib/crypto/rand/crypto_rand_read_test.v',
'vlib/net/smtp/smtp_test.v',
'vlib/v/tests/websocket_logger_interface_should_compile_test.v',
]
skip_with_fsanitize_address = [
'vlib/net/websocket/websocket_test.v',
'vlib/v/tests/websocket_logger_interface_should_compile_test.v',
]
skip_with_fsanitize_undefined = [
'do_not_remove',
@@ -184,6 +186,7 @@ const (
'vlib/net/http/response_test.v',
'vlib/builtin/js/array_test.js.v',
'vlib/net/smtp/smtp_test.v',
'vlib/v/tests/websocket_logger_interface_should_compile_test.v',
]
skip_on_linux = [
'do_not_remove',
@@ -214,6 +217,7 @@ const (
'vlib/sync/many_times_test.v',
'vlib/sync/once_test.v',
'vlib/net/smtp/smtp_test.v',
'vlib/v/tests/websocket_logger_interface_should_compile_test.v',
]
skip_on_non_windows = [
'do_not_remove',