From cc88bf1b089156697b924757e8c4f4e8ab713e46 Mon Sep 17 00:00:00 2001 From: "Wesley W. Terpstra" Date: Tue, 13 Sep 2016 17:41:35 -0700 Subject: [PATCH] junctions: give unit tests more time --- src/main/scala/junctions/unittests/UnitTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/junctions/unittests/UnitTest.scala b/src/main/scala/junctions/unittests/UnitTest.scala index 77dd146b..b64e0f5f 100644 --- a/src/main/scala/junctions/unittests/UnitTest.scala +++ b/src/main/scala/junctions/unittests/UnitTest.scala @@ -39,7 +39,7 @@ class UnitTestSuite(implicit p: Parameters) extends Module { state := Mux(test_idx === UInt(tests.size - 1), s_done, s_start) } - val timer = Module(new Timer(100000, tests.size)) + val timer = Module(new Timer(500000, tests.size)) timer.io.start.valid := Bool(false) timer.io.stop.valid := Bool(false)