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

skip asm test on tcc

This commit is contained in:
Alexander Medvednikov 2019-11-17 01:16:36 +03:00
parent 2391c72e4b
commit 3c03051bcf

View File

@ -92,6 +92,9 @@ pub fn (ts mut TestSession) test() {
}
$if msvc {
}
$if tinyc {
if file.contains('asm') { continue }
}
tmpc_filepath := file.replace('.v', '.tmp.c')
cmd := '"$ts.vexe" $ts.vargs "$file"'