aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/PassTests.scala
diff options
context:
space:
mode:
authorAlbert Chen2019-09-19 14:55:15 -0700
committerAlbert Magyar2019-09-19 14:55:14 -0700
commit5e9b286185e98c58e5fde1987c48d085ebdb1e25 (patch)
tree41b292cf71686186442cbffab03396a84a2adfb2 /src/test/scala/firrtlTests/PassTests.scala
parent932b5d1ea66d3cc2475a22d21c237b0ed2ee9c09 (diff)
Faster inline renaming (#1184)
* dont chain inline and refix RenameMaps * cache already inlined modules * reduce number of chained RenameMaps * InlineInstances: cleanup and add comments
Diffstat (limited to 'src/test/scala/firrtlTests/PassTests.scala')
-rw-r--r--src/test/scala/firrtlTests/PassTests.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/scala/firrtlTests/PassTests.scala b/src/test/scala/firrtlTests/PassTests.scala
index 7fe154ec..6e12dd5b 100644
--- a/src/test/scala/firrtlTests/PassTests.scala
+++ b/src/test/scala/firrtlTests/PassTests.scala
@@ -38,6 +38,14 @@ abstract class SimpleTransformSpec extends FlatSpec with FirrtlMatchers with Com
logger.debug(actual)
logger.debug(expected)
(actual) should be (expected)
+
+ annotations.foreach { anno =>
+ logger.debug(anno.serialize)
+ }
+
+ finalState.annotations.toSeq.foreach { anno =>
+ logger.debug(anno.serialize)
+ }
checkAnnotations.foreach { check =>
(finalState.annotations.toSeq) should contain (check)
}