From c408223bb500337494cdf69b46feca5e32f709b1 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 11 Apr 2020 14:35:25 +0300 Subject: [PATCH] test-fixed: move tests back to the skip_test_files list --- cmd/tools/vtest-fixed.v | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/cmd/tools/vtest-fixed.v b/cmd/tools/vtest-fixed.v index 1bb1249489..1bc9ab1557 100644 --- a/cmd/tools/vtest-fixed.v +++ b/cmd/tools/vtest-fixed.v @@ -41,15 +41,16 @@ const ( 'vlib/v/tests/typeof_test.v', 'vlib/v/tests/valgrind/valgrind_test.v', // ubuntu-musl only 'vlib/v/tests/pointers_str_test.v', - 'vlib/v/tests/live_test.v', // Linux & Solaris only, but since live does not work with v2, just skip everywhere - 'vlib/v/tests/asm_test.v', // skip everywhere for now + + 'vlib/v/tests/live_test.v', // Linux & Solaris only; since live does not actually work for now with v2, just skip + 'vlib/v/tests/asm_test.v', // skip everywhere for now, works on linux with cc != tcc + 'vlib/sqlite/sqlite_test.v', // works only on ubuntu with installed sqlite + 'vlib/clipboard/clipboard_test.v', // needs code changes to make it compile with v2 ] skip_on_linux = [ - 'vlib/clipboard/clipboard_test.v', - ] + ] skip_on_non_linux = [ - 'vlib/sqlite/sqlite_test.v', - ] + ] ) fn main() {