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

tests: enable http_test.v

This commit is contained in:
Alexander Medvednikov 2020-05-06 16:35:54 +02:00
parent 88ef0a75e2
commit 2b0f2be18b

View File

@ -11,15 +11,11 @@ const (
'vlib/v/tests/num_lit_call_method_test.v',
'vlib/v/tests/pointers_test.v',
'vlib/v/tests/type_test.v',
//'vlib/v/tests/valgrind/valgrind_test.v', // ubuntu-musl only
'vlib/v/tests/pointers_str_test.v',
'vlib/net/http/http_httpbin_test.v', // fails on ubuntu-musl, because of missing openssl
'vlib/net/http/http_test.v', // fails on ubuntu-musl, because of missing openssl
'vlib/net/http/cookie_test.v', // ok, but should be skipped on ubuntu-musl, since there is no openssl there
'vlib/clipboard/clipboard_test.v',
'vlib/sqlite/sqlite_test.v',
'vlib/v/tests/asm_test.v', // skip everywhere for now, works on linux with cc != tcc
]
skip_on_linux = []string{}
skip_on_non_linux = []string{}