diff options
| author | Albert Chen | 2019-09-19 14:55:15 -0700 |
|---|---|---|
| committer | Albert Magyar | 2019-09-19 14:55:14 -0700 |
| commit | 5e9b286185e98c58e5fde1987c48d085ebdb1e25 (patch) | |
| tree | 41b292cf71686186442cbffab03396a84a2adfb2 /src/test/scala/firrtlTests/PassTests.scala | |
| parent | 932b5d1ea66d3cc2475a22d21c237b0ed2ee9c09 (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.scala | 8 |
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) } |
