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

v test-all: add a v run examples/v_script.vsh step too

This commit is contained in:
Delyan Angelov
2021-09-10 12:43:53 +03:00
parent bdd053fcf1
commit 6ea750da8d
3 changed files with 12 additions and 7 deletions

View File

@@ -68,6 +68,10 @@ fn get_all_commands() []Command {
okmsg: 'V prints the generated source code to stdout with `-o -` .'
}
}
res << Command{
line: '$vexe run examples/v_script.vsh'
okmsg: 'V can run the .VSH script file examples/v_script.vsh'
}
res << Command{
line: '$vexe -o vtmp cmd/v'
okmsg: 'V can compile itself.'