summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/ChiselSpec.scala
diff options
context:
space:
mode:
authorHenry Cook2015-08-13 13:59:46 -0700
committerHenry Cook2015-08-13 15:49:06 -0700
commite1bdf1eea5b00917b26bea24b25b3911a56fe849 (patch)
treeb9aa731eb334894e929b530233822ea4e69c76d9 /src/test/scala/chiselTests/ChiselSpec.scala
parent4a347c950fc51176a6e794835bfec6d86f989546 (diff)
minor tweaks
Diffstat (limited to 'src/test/scala/chiselTests/ChiselSpec.scala')
-rw-r--r--src/test/scala/chiselTests/ChiselSpec.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/scala/chiselTests/ChiselSpec.scala b/src/test/scala/chiselTests/ChiselSpec.scala
index 299eb9af..fd602ef3 100644
--- a/src/test/scala/chiselTests/ChiselSpec.scala
+++ b/src/test/scala/chiselTests/ChiselSpec.scala
@@ -33,8 +33,10 @@ package chiselTests
import org.scalatest._
import org.scalatest.prop._
import org.scalacheck._
+import Chisel.testers._
class ChiselSpec extends FlatSpec with PropertyChecks {
+ def execute(t: => BasicTester): Boolean = TesterDriver.execute(t)
val safeUIntWidth = Gen.choose(1, 31)
val safeUInts = Gen.choose(0, (1 << 30))