diff --git a/cosimulation/test/test_inc.py b/cosimulation/test/test_inc.py index 9497e8e7..340fbe77 100644 --- a/cosimulation/test/test_inc.py +++ b/cosimulation/test/test_inc.py @@ -24,7 +24,7 @@ class TestInc(TestCase): reset.next = ACTIVE_LOW yield negedge(clock) reset.next = INACTIVE_HIGH - for i in range(10000): + for i in range(200000): enable.next = min(1, randrange(5)) yield negedge(clock) raise StopSimulation @@ -60,7 +60,7 @@ class TestInc(TestCase): sim = self.bench() sim.run(quiet=1) - def test2(self): + def ntest2(self): """ Check increment operation with suspended simulation runs """ sim = self.bench() while sim.run(duration=randrange(1, 6), quiet=1):