From 9a857c11c6f3c9f1b40b1a507b2283f9fe2afc04 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 23 Jan 2024 04:13:14 +0200 Subject: [PATCH] testing: fix warning for compiling `./v cmd/tools/vtest.v` --- cmd/tools/modules/testing/common.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tools/modules/testing/common.v b/cmd/tools/modules/testing/common.v index 4dac40e5b41d27..0cb7c0dac11e7f 100644 --- a/cmd/tools/modules/testing/common.v +++ b/cmd/tools/modules/testing/common.v @@ -603,7 +603,7 @@ fn worker_trunner(mut p pool.PoolProcessor, idx int, thread_id int) voidptr { if compile_r.exit_code == 0 { break } - random_sleep_ms(50, 100) + random_sleep_ms(50, 100 * cretry) } ts.append_message_with_duration(.compile_end, compile_r.output, compile_cmd_duration, mtc)