From 24404133102d0059b2a531db92948141c2277a33 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 18 Oct 2020 19:45:49 +0300 Subject: [PATCH] tests: turn off live_test.v on macos for now (due to frequent false positives) --- vlib/v/tests/live_test.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/tests/live_test.v b/vlib/v/tests/live_test.v index 19de3152a5..420c6afd6a 100644 --- a/vlib/v/tests/live_test.v +++ b/vlib/v/tests/live_test.v @@ -120,7 +120,7 @@ fn atomic_write_source(source string) { // fn testsuite_begin() { - if os.user_os() !in ['linux', 'solaris', 'macos'] && os.getenv('FORCE_LIVE_TEST').len == 0 { + if os.user_os() !in ['linux', 'solaris'] && os.getenv('FORCE_LIVE_TEST').len == 0 { eprintln('Testing the runtime behaviour of -live mode,') eprintln('is reliable only on Linux/macOS for now.') eprintln('You can still do it by setting FORCE_LIVE_TEST=1 .')