From ad3cfc5aa856c1329943f1aafbfd513b60636aaa Mon Sep 17 00:00:00 2001 From: Daniel Kirschten Date: Sun, 11 Oct 2020 19:37:36 +0200 Subject: [PATCH] Increased a limit in TestEnvironmentHelper that was too small --- .../mograsim/logic/model/am2900/util/TestEnvironmentHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.17.1