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

all: bare metal support (fix -freestanding) (#9624)

This commit is contained in:
crthpl
2021-04-13 22:50:50 -07:00
committed by GitHub
parent 711e309eef
commit 14434cc86a
46 changed files with 1316 additions and 482 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")
}
}
}
}