summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/CompatibilitySpec.scala
diff options
context:
space:
mode:
authormergify[bot]2021-11-21 05:03:13 +0000
committerGitHub2021-11-21 05:03:13 +0000
commitaf7f263941e796b20d65d984bdc4fa3739e2d9b6 (patch)
treee0ca1e90bc86ae67e1d55d4d574e95acd7a94210 /src/test/scala/chiselTests/CompatibilitySpec.scala
parent27b35f49bd1ec178e693a5e5ec33193a80bb1140 (diff)
parent8f796df5693b560a086b95a24c5bd090064a639e (diff)
Merge branch 'master' into update/sbt-scoverage-1.9.2
Diffstat (limited to 'src/test/scala/chiselTests/CompatibilitySpec.scala')
-rw-r--r--src/test/scala/chiselTests/CompatibilitySpec.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/scala/chiselTests/CompatibilitySpec.scala b/src/test/scala/chiselTests/CompatibilitySpec.scala
index ccf287a6..7ac67b7c 100644
--- a/src/test/scala/chiselTests/CompatibilitySpec.scala
+++ b/src/test/scala/chiselTests/CompatibilitySpec.scala
@@ -536,6 +536,9 @@ class CompatibiltySpec extends ChiselFlatSpec with ScalaCheckDrivenPropertyCheck
info("toUInt works")
s.toUInt shouldBe a [UInt]
+
+ info("toBools works")
+ s.toBools shouldBe a [Seq[Bool]]
}
ChiselStage.elaborate(new Foo)