mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
v test v => v test-compiler
This commit is contained in:

committed by
Alexander Medvednikov

parent
854309a7d8
commit
ec15bfb7d1
14
tools/vbuild-examples.v
Normal file
14
tools/vbuild-examples.v
Normal file
@ -0,0 +1,14 @@
|
||||
module main
|
||||
|
||||
import (
|
||||
os
|
||||
testing
|
||||
)
|
||||
|
||||
fn main() {
|
||||
args := os.args
|
||||
args_string := args[1..].join(' ')
|
||||
if testing.v_build_failing(args_string.all_before('build-examples'), 'examples') {
|
||||
exit(1)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user