From fba28d2dcc20bd91abacffe66cdebddf7ab5bb3f Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 22 Feb 2021 17:24:52 +0200 Subject: [PATCH] ci: increase the timeout for test_os_process (false positives on macos) --- vlib/os/process_test.v | 1 + 1 file changed, 1 insertion(+) diff --git a/vlib/os/process_test.v b/vlib/os/process_test.v index 959801d2993a03..e493082884722f 100644 --- a/vlib/os/process_test.v +++ b/vlib/os/process_test.v @@ -67,6 +67,7 @@ fn test_slurping_output() { return } mut p := os.new_process(test_os_process) + p.set_args(['-timeout_ms', '500', '-period_ms', '50']) p.set_redirect_stdio() assert p.status != .exited p.wait()