From 061851dc833b537f7c6288832f9d0f33c6880fbd Mon Sep 17 00:00:00 2001 From: Michael Eischer <eischer@cs.fau.de> Date: Thu, 2 Jul 2020 14:24:35 +0200 Subject: [PATCH] Reduce throughput requirements of basic check --- src/refit/client/REFITBenchmark.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/refit/client/REFITBenchmark.java b/src/refit/client/REFITBenchmark.java index 48284f4..7373d4d 100644 --- a/src/refit/client/REFITBenchmark.java +++ b/src/refit/client/REFITBenchmark.java @@ -150,7 +150,7 @@ public class REFITBenchmark implements REFITStatisticsListener { REFITCallTracer.instance.dumpStacks(); analyzeLibraryProgress(libraries); - System.exit((lastEventCount > 100) ? 0 : 1); + System.exit((lastEventCount > 50) ? 0 : 1); } private long analyzeLibraryProgress(REFITClientLibrary[] libraries) { -- GitLab