1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

skip interface test on msvc for now

This commit is contained in:
Alexander Medvednikov 2019-11-09 02:40:41 +03:00
parent 32fec2c26c
commit fad0cc2ce5

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