aboutsummaryrefslogtreecommitdiff
path: root/test/ufuzz/actions.js
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2020-09-05 12:29:50 +0100
committerGitHub <noreply@github.com>2020-09-05 19:29:50 +0800
commitfb30aeccaf857a614e6cc7511b543daab6e760e3 (patch)
tree03dd15df8e884a6e6942cd33d23a7c40ecf579c6 /test/ufuzz/actions.js
parent226aa1f76b557aee6eed50e6a578d88a2c656cf2 (diff)
downloadtracifyjs-fb30aeccaf857a614e6cc7511b543daab6e760e3.tar.gz
tracifyjs-fb30aeccaf857a614e6cc7511b543daab6e760e3.zip
relax `ufuzz` job timing constraint (#4094)
Diffstat (limited to 'test/ufuzz/actions.js')
-rw-r--r--test/ufuzz/actions.js2
1 files changed, 1 insertions, 1 deletions
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");
}