From fb30aeccaf857a614e6cc7511b543daab6e760e3 Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Sat, 5 Sep 2020 12:29:50 +0100 Subject: [PATCH] relax `ufuzz` job timing constraint (#4094) --- test/ufuzz/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ufuzz/actions.js b/test/ufuzz/actions.js index f9567d56..fa4431a7 100644 --- a/test/ufuzz/actions.js +++ b/test/ufuzz/actions.js @@ -27,7 +27,7 @@ process.on("beforeExit", function() { if (queued > 3) { process.stdout.write("0"); } else if (now - earliest > 0 && total > 1) { - process.stdout.write(Math.min(20 * (now - earliest) / (total - 1), 6300000).toFixed(0)); + process.stdout.write(Math.min(20 * (now - earliest) / (total - 1), 18000000).toFixed(0)); } else { process.stdout.write("3600000"); } -- 2.34.1