diff --git a/cmd/tools/vtest-fixed.v b/cmd/tools/vtest-fixed.v index b807a28686..1bb1249489 100644 --- a/cmd/tools/vtest-fixed.v +++ b/cmd/tools/vtest-fixed.v @@ -41,12 +41,14 @@ 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 ] + skip_on_linux = [ + 'vlib/clipboard/clipboard_test.v', + ] skip_on_non_linux = [ - 'vlib/clipboard/clipboard_test.v', // Linux only - 'vlib/sqlite/sqlite_test.v', // Linux only - 'vlib/v/tests/asm_test.v', // Linux only - 'vlib/v/tests/live_test.v', // Linux only + 'vlib/sqlite/sqlite_test.v', ] ) @@ -66,6 +68,9 @@ fn main() { $if !linux { tsession.skip_files << skip_on_non_linux } + $if linux { + tsession.skip_files << skip_on_linux + } tsession.test() eprintln(tsession.benchmark.total_message(title)) if tsession.benchmark.nfail > 0 {