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"'