From be4eaa680a7a664f8dcb97badcbe1ee5adc689cd Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 9 Nov 2019 02:45:49 +0300 Subject: [PATCH] skip module test on msvc for now --- tools/vtest.v | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/vtest.v b/tools/vtest.v index 7aaed7110c..6b4dc9a559 100644 --- a/tools/vtest.v +++ b/tools/vtest.v @@ -92,6 +92,7 @@ pub fn (ts mut TestSession) test() { } $if msvc { if file.contains('interface_test') { continue } + if file.contains('module_test') { continue } } tmpc_filepath := file.replace('.v', '.tmp.c')