summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/ChiselSpec.scala
diff options
context:
space:
mode:
authorHenry Cook2015-08-13 16:35:47 -0700
committerHenry Cook2015-08-13 16:36:09 -0700
commit6439d30fc177867c721625fd8895f04a84970f2b (patch)
tree9805cf10e8dd96b7e22d75b6220fd32198d2532a /src/test/scala/chiselTests/ChiselSpec.scala
parenta69f8ad1a82b60831b40eae4042884f9251ef2c6 (diff)
complexassign test
Diffstat (limited to 'src/test/scala/chiselTests/ChiselSpec.scala')
-rw-r--r--src/test/scala/chiselTests/ChiselSpec.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/scala/chiselTests/ChiselSpec.scala b/src/test/scala/chiselTests/ChiselSpec.scala
index 002ace8c..f3dad3dc 100644
--- a/src/test/scala/chiselTests/ChiselSpec.scala
+++ b/src/test/scala/chiselTests/ChiselSpec.scala
@@ -41,5 +41,6 @@ class ChiselPropSpec extends PropSpec with PropertyChecks {
val safeUIntWidth = Gen.choose(1, 31)
val safeUInts = Gen.choose(0, (1 << 30))
val vecSizes = Gen.choose(0, 4)
+ def enSequence(n: Int) = Gen.containerOfN[List,Boolean](n,Gen.oneOf(true,false))
}