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

ci: fix more failing tests

This commit is contained in:
Delyan Angelov
2022-01-22 22:35:18 +02:00
parent 9057e9f1dd
commit 359b674cff
13 changed files with 19 additions and 18 deletions

View File

@@ -6,7 +6,7 @@ fn test_all_samples_can_be_compiled() {
samples := os.walk_ext('$vroot/vlib/gg/testdata', '.vv')
mut fails := []string{}
for program_source in samples {
compile_cmd := '"$vexe" "$program_source"'
compile_cmd := '${os.quoted_path(vexe)} ${os.quoted_path(program_source)}'
res := os.execute(compile_cmd)
if res.exit_code != 0 {
eprintln('>>> FAIL $compile_cmd')