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

context: add a new context module, based on Golang's context, intended to be used in webservers (#9563)

This commit is contained in:
Ulises Jeremias Cornejo Fandos
2021-04-12 13:32:51 -03:00
committed by GitHub
parent b54188dfea
commit 07a6f4e445
10 changed files with 778 additions and 1 deletions

View File

@ -30,7 +30,6 @@ const (
]
skip_with_fsanitize_undefined = []string{}
skip_with_werror = [
'vlib/sync/array_rlock_test.v',
'vlib/clipboard/clipboard_test.v',
'vlib/eventbus/eventbus_test.v',
'vlib/gx/color_test.v',
@ -56,6 +55,10 @@ const (
'vlib/strconv/atof_test.v',
'vlib/strconv/f32_f64_to_string_test.v',
'vlib/strconv/number_to_base_test.v',
'vlib/context/value_test.v' /* the following tests need C casts in `sync` and/or thirdparty/stdatomic */,
'vlib/context/empty_test.v',
'vlib/context/cancel_test.v',
'vlib/sync/array_rlock_test.v',
'vlib/sync/atomic2/atomic_test.v',
'vlib/sync/channel_2_test.v',
'vlib/sync/channel_1_test.v',