1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tests: turn off live_test.v on macos for now (due to frequent false positives)

This commit is contained in:
Delyan Angelov 2020-10-18 19:45:49 +03:00
parent 16ce316695
commit 2440413310

View File

@ -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 .')