aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorjackkoenig2016-03-10 01:23:14 -0800
committerjackkoenig2016-03-10 13:37:53 -0800
commit5737a8ccbf54a6d22095023205867e851e204c3f (patch)
tree3f701a02f28121568c53fac006185fb029328cdd /src/test
parent3e3715dd68f202ade2d0d5216669eb6a45863e7a (diff)
Add support for right shift by amount larger than argument width
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scala/firrtlTests/IntegrationSpec.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/scala/firrtlTests/IntegrationSpec.scala b/src/test/scala/firrtlTests/IntegrationSpec.scala
index eb5a7fa1..e9afd739 100644
--- a/src/test/scala/firrtlTests/IntegrationSpec.scala
+++ b/src/test/scala/firrtlTests/IntegrationSpec.scala
@@ -8,7 +8,9 @@ class IntegrationSpec extends FirrtlPropSpec {
case class Test(name: String, dir: String)
- val runTests = Seq(Test("GCDTester", "/integration"))
+ val runTests = Seq(Test("GCDTester", "/integration"),
+ Test("RightShiftTester", "/integration"))
+
runTests foreach { test =>
property(s"${test.name} should execute correctly") {