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

v test-cleancode: ensure more .v files are kept vmft-ed

This commit is contained in:
Delyan Angelov 2021-03-14 12:17:31 +02:00
parent eebc8a9d7a
commit ddbe57e00a
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
4 changed files with 24 additions and 20 deletions

View File

@ -27,6 +27,8 @@ const (
'vlib/builtin/array_test.v',
'vlib/builtin/string.v',
'vlib/builtin/map.v',
'vlib/builtin/int.v',
'vlib/builtin/option.v',
'vlib/math/bits/bits.v',
'vlib/orm/',
'vlib/term/colors.v',
@ -42,17 +44,17 @@ const (
'vlib/v/eval/',
'vlib/v/fmt/',
'vlib/v/gen/c/',
/* 'vlib/v/gen/js/', */
//'vlib/v/gen/js/',
'vlib/v/gen/x64/',
'vlib/v/live/',
'vlib/v/markused/',
'vlib/v/parser/',
/* 'vlib/v/pkgconfig/', */
'vlib/v/pkgconfig/',
'vlib/v/pref/',
'vlib/v/preludes',
'vlib/v/scanner/',
'vlib/v/table/',
/* 'vlib/v/tests/', */
//'vlib/v/tests/',
'vlib/v/token/',
'vlib/v/util/',
'vlib/v/vcache/',

View File

@ -23,7 +23,9 @@ struct None__ {
code int
}
fn (_ None__) str() string { return 'none' }
fn (_ None__) str() string {
return 'none'
}
// error returns a default error instance containing the error given in `message`.
// Example: `if ouch { return error('an error occurred') }`

View File

@ -1,5 +1,5 @@
import os
import pkgconfig
import v.pkgconfig
const vexe = os.getenv('VEXE')
@ -49,12 +49,11 @@ fn test_samples() {
assert x.url == ''
assert x.version == '2.64.3'
assert x.description == 'Dynamic module loader for GLib'
assert x.libs ==
['-Wl,--export-dynamic', '-L/usr/lib/x86_64-linux-gnu', '-lgmodule-2.0', '-pthread', '-lglib-2.0', '-lpcre']
assert x.libs == ['-Wl,--export-dynamic', '-L/usr/lib/x86_64-linux-gnu', '-lgmodule-2.0',
'-pthread', '-lglib-2.0', '-lpcre']
assert x.libs_private == ['-ldl', '-pthread']
assert x.cflags ==
['-I/usr/include', '-pthread', '-I/usr/include/glib-2.0', '-I/usr/lib/x86_64-linux-gnu/glib-2.0/include']
assert x.vars == {
assert x.cflags == ['-I/usr/include', '-pthread', '-I/usr/include/glib-2.0', '-I/usr/lib/x86_64-linux-gnu/glib-2.0/include']
assert x.vars == map{
'prefix': '/usr'
'libdir': '/usr/lib/x86_64-linux-gnu'
'includedir': '/usr/include'
@ -71,9 +70,10 @@ fn test_samples() {
assert x.modname == 'glib-2.0'
assert x.libs == ['-L/usr/lib/x86_64-linux-gnu', '-lglib-2.0', '-lpcre']
assert x.libs_private == ['-pthread']
assert x.cflags ==
['-I/usr/include/glib-2.0', '-I/usr/lib/x86_64-linux-gnu/glib-2.0/include', '-I/usr/include']
assert x.vars == {
assert x.cflags == ['-I/usr/include/glib-2.0', '-I/usr/lib/x86_64-linux-gnu/glib-2.0/include',
'-I/usr/include',
]
assert x.vars == map{
'prefix': '/usr'
'libdir': '/usr/lib/x86_64-linux-gnu'
'includedir': '/usr/include'