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

all: make comment expressions + fix vfmt array init (#5851)

This commit is contained in:
Enzo
2020-07-17 19:13:22 +02:00
committed by GitHub
parent 39f90e25f3
commit 90d9040e6e
19 changed files with 397 additions and 291 deletions

View File

@ -9,11 +9,10 @@ const (
'vlib/net/http/http_httpbin_test.v',
]
skip_on_musl = []string{}
skip_on_ubuntu_musl =
[
skip_on_ubuntu_musl = [
'vlib/net/http/cookie_test.v',
'vlib/net/http/http_test.v',
'vlib/net/websocket/ws_test.v'
'vlib/net/websocket/ws_test.v',
'vlib/sqlite/sqlite_test.v',
'vlib/orm/orm_test.v',
'vlib/clipboard/clipboard_test.v',
@ -21,7 +20,7 @@ const (
]
skip_on_linux = []string{}
skip_on_non_linux = [
'vlib/net/websocket/ws_test.v'
'vlib/net/websocket/ws_test.v',
]
skip_on_windows = [
'vlib/orm/orm_test.v',
@ -75,6 +74,6 @@ fn main() {
tsession.test()
eprintln(tsession.benchmark.total_message(title))
if tsession.benchmark.nfail > 0 {
panic('\nWARNING: failed ${tsession.benchmark.nfail} times.\n')
panic('\nWARNING: failed $tsession.benchmark.nfail times.\n')
}
}