From b041681c0095122c4e697be284dd28709ed239a7 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 5 Apr 2021 22:38:55 +0300 Subject: [PATCH] tests: bump limits to reduce flakyness on m1 with latest clang --- vlib/os/process_test.v | 2 +- vlib/vweb/tests/vweb_test.v | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/os/process_test.v b/vlib/os/process_test.v index 7250d778ed..0246b72aca 100644 --- a/vlib/os/process_test.v +++ b/vlib/os/process_test.v @@ -51,7 +51,7 @@ fn test_run() { assert p.status == .exited // eprintln('polling iterations: $i') - assert i < 20 + assert i < 50 } fn test_wait() { diff --git a/vlib/vweb/tests/vweb_test.v b/vlib/vweb/tests/vweb_test.v index 9a1c57bf93..b2ccde0142 100644 --- a/vlib/vweb/tests/vweb_test.v +++ b/vlib/vweb/tests/vweb_test.v @@ -7,7 +7,7 @@ import io const ( sport = 12380 - exit_after_time = 9000 // milliseconds + exit_after_time = 12000 // milliseconds vexe = os.getenv('VEXE') vweb_logfile = os.getenv('VWEB_LOGFILE') vroot = os.dir(vexe)