From 43863edc4fbe604bf95f0921a00f34b75be5ac9a Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 17 Nov 2019 07:27:59 +0300 Subject: [PATCH] remove asm test from msvc --- .github/workflows/ci.yml | 4 ++-- tools/vtest.v | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ad3085689..47069c010f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,8 +39,8 @@ jobs: run: make && ./v -cc gcc -o v v.v - name: Test v->c run: ./v test v - - name: Test v->js - run: ./v -o hi.js examples/hello_v_js.v && node hi.js +# - name: Test v->js +# run: ./v -o hi.js examples/hello_v_js.v && node hi.js - name: Bare metal run: ./v -bare -o bare vlib/os/bare/bare_example_linux.v diff --git a/tools/vtest.v b/tools/vtest.v index 8a03e69153..3b2069b582 100644 --- a/tools/vtest.v +++ b/tools/vtest.v @@ -91,6 +91,7 @@ pub fn (ts mut TestSession) test() { if file.contains('sqlite') { continue } } $if msvc { + if file.contains('asm') { continue } } $if tinyc { if file.contains('asm') { continue }