skip asm test on tcc

pull/2791/head
Alexander Medvednikov 2019-11-17 01:16:36 +03:00
parent 2391c72e4b
commit 3c03051bcf
1 changed files with 3 additions and 0 deletions

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