From: Daniel Kirschten Date: Sun, 11 Oct 2020 17:37:36 +0000 (+0200) Subject: Increased a limit in TestEnvironmentHelper that was too small X-Git-Url: https://mograsim.net/gitweb/?p=Mograsim.git;a=commitdiff_plain;h=ad3cfc5aa856c1329943f1aafbfd513b60636aaa Increased a limit in TestEnvironmentHelper that was too small --- diff --git a/tests/net.mograsim.logic.model.am2900.tests/src/net/mograsim/logic/model/am2900/util/TestEnvironmentHelper.java b/tests/net.mograsim.logic.model.am2900.tests/src/net/mograsim/logic/model/am2900/util/TestEnvironmentHelper.java index 071bd783..5adf93d0 100644 --- a/tests/net.mograsim.logic.model.am2900.tests/src/net/mograsim/logic/model/am2900/util/TestEnvironmentHelper.java +++ b/tests/net.mograsim.logic.model.am2900.tests/src/net/mograsim/logic/model/am2900/util/TestEnvironmentHelper.java @@ -51,7 +51,7 @@ public class TestEnvironmentHelper private DebugState debug = DebugState.NO_DEBUG; private Set wireDebugChangeSet; private boolean debugWires = false; - public int debugEventThreshold = 10_000; + public int debugEventThreshold = 20_000; public int debugEventCount = 500; private int eventCounter;