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

ci: fix compilation of the test infrastructure

This commit is contained in:
Delyan Angelov
2020-12-20 18:27:42 +02:00
parent 50a6976b5e
commit 969f8f1a75
2 changed files with 16 additions and 21 deletions

View File

@@ -5,8 +5,8 @@ import os.cmdline
import testing
fn main() {
args := os.args
if args.last() == 'test' {
args := os.args.clone()
if os.args.last() == 'test' {
println('Usage:')
println(' A)')
println(' v test folder/ : run all v tests in the given folder.')