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

vvet: big cleanup (#9454)

This commit is contained in:
Lukas Neubert
2021-03-24 22:53:44 +01:00
committed by GitHub
parent 7664964c56
commit 8b7085e050
6 changed files with 95 additions and 122 deletions

View File

@ -34,7 +34,7 @@ fn check_path(vexe string, dir string, tests []string) int {
program := path
print(path + ' ')
// -force is needed so that `v vet` would not skip the regression files
res := os.execute('$vexe vet -force $program')
res := os.execute('$vexe vet -force -nocolor $program')
if res.exit_code < 0 {
panic(res.output)
}