summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/ChiselSpec.scala
diff options
context:
space:
mode:
authorHenry Cook2015-08-13 15:47:02 -0700
committerHenry Cook2015-08-13 15:51:53 -0700
commitad96b03f84d0182f5e74f11117331d69752ea0a0 (patch)
tree0d4ed1e56c054fe0ac7d2ef8739fb28c18be2b76 /src/test/scala/chiselTests/ChiselSpec.scala
parented69bdea87f7f60cc6b3bac7b6cdd7b6bc787f1d (diff)
testing improvements
Diffstat (limited to 'src/test/scala/chiselTests/ChiselSpec.scala')
-rw-r--r--src/test/scala/chiselTests/ChiselSpec.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/chiselTests/ChiselSpec.scala b/src/test/scala/chiselTests/ChiselSpec.scala
index fd602ef3..002ace8c 100644
--- a/src/test/scala/chiselTests/ChiselSpec.scala
+++ b/src/test/scala/chiselTests/ChiselSpec.scala
@@ -35,11 +35,11 @@ import org.scalatest.prop._
import org.scalacheck._
import Chisel.testers._
-class ChiselSpec extends FlatSpec with PropertyChecks {
+class ChiselPropSpec extends PropSpec with PropertyChecks {
def execute(t: => BasicTester): Boolean = TesterDriver.execute(t)
val safeUIntWidth = Gen.choose(1, 31)
val safeUInts = Gen.choose(0, (1 << 30))
-
+ val vecSizes = Gen.choose(0, 4)
}