skip interface test on msvc for now

pull/2712/head
Alexander Medvednikov 2019-11-09 02:40:41 +03:00
parent 32fec2c26c
commit fad0cc2ce5
1 changed files with 3 additions and 0 deletions

View File

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