From 1cb45e9916b0d6bf7af133dd84cda57db18fe908 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Mon, 23 Mar 2020 20:36:34 +0100 Subject: [PATCH] compiler_test: do not run on windows for now --- vlib/v/tests/compiler_test.v | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vlib/v/tests/compiler_test.v b/vlib/v/tests/compiler_test.v index 6b8444134f..e37143b50f 100644 --- a/vlib/v/tests/compiler_test.v +++ b/vlib/v/tests/compiler_test.v @@ -2,6 +2,9 @@ import os import term fn test_all() { + $if windows { + return + } vexe := os.getenv('VEXE') vroot := os.dir(vexe) dir := os.join_path(vroot,'vlib/v/tests')