From fad0cc2ce5b465e9293363ae0609bd43d950086c Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 9 Nov 2019 02:40:41 +0300 Subject: [PATCH] skip interface test on msvc for now --- tools/vtest.v | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/vtest.v b/tools/vtest.v index 74a4ce252c..7aaed7110c 100644 --- a/tools/vtest.v +++ b/tools/vtest.v @@ -90,6 +90,9 @@ pub fn (ts mut TestSession) test() { $if windows { if file.contains('sqlite') { continue } } + $if msvc { + if file.contains('interface_test') { continue } + } tmpc_filepath := file.replace('.v', '.tmp.c') cmd := '"$ts.vexe" $ts.vargs "$file"'