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

checker: do not allow nil sum types init

This commit is contained in:
Alexander Medvednikov
2021-03-31 11:13:15 +03:00
parent dcab79146b
commit 6f318be96c
34 changed files with 133 additions and 61 deletions

View File

@ -0,0 +1,27 @@
import os
fn test_syscallwrappers() {
if true {
return
}
$if linux {
$if x64 {
exe := os.executable()
vdir := os.dir(exe)
if vdir.len > 1 {
dot_checks := vdir + '/.checks'
assert os.is_dir(dot_checks)
os.chdir(dot_checks)
checks_v := 'checks.v'
assert os.exists(checks_v)
rc := os.execute_or_panic('v run $checks_v')
assert rc.exit_code == 0
assert !rc.output.contains('V panic: An assertion failed.')
assert !rc.output.contains('failed')
} else {
panic("Can't find test directory")
}
}
}
}