From 3c03051bcf9940d73e5862227936153df4c1e230 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 17 Nov 2019 01:16:36 +0300 Subject: [PATCH] skip asm test on tcc --- tools/vtest.v | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/vtest.v b/tools/vtest.v index cdc72d1446..8a03e69153 100644 --- a/tools/vtest.v +++ b/tools/vtest.v @@ -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"'