From e9073463dfe77746f23afdfe782e1143a5e5be9f Mon Sep 17 00:00:00 2001 From: Deborah Soung Date: Tue, 5 May 2020 12:48:05 -0700 Subject: before/after initial block macros (#1550) * adding init macros * fix missing tick * adding more documentation; fixing up emitter tests * adding initial-guarding macro test * prefixing macros with FIRRTL * cleanup * typo fix Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>--- src/test/scala/firrtl/testutils/FirrtlSpec.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/test/scala/firrtl/testutils') diff --git a/src/test/scala/firrtl/testutils/FirrtlSpec.scala b/src/test/scala/firrtl/testutils/FirrtlSpec.scala index e14dc78c..8f0241fe 100644 --- a/src/test/scala/firrtl/testutils/FirrtlSpec.scala +++ b/src/test/scala/firrtl/testutils/FirrtlSpec.scala @@ -254,7 +254,9 @@ object FirrtlCheckers extends FirrtlMatchers { /** Checks that the emitted circuit has the expected line, both will be normalized */ def containLine(expectedLine: String) = containLines(expectedLine) - /** Checks that the emitted circuit has the expected lines in order, all lines will be normalized */ + /** Checks that the emitted circuit contains the expected lines contiguously and in order; + * all lines will be normalized + */ def containLines(expectedLines: String*) = new CircuitStateStringsMatcher(expectedLines) class CircuitStateStringsMatcher(expectedLines: Seq[String]) extends Matcher[CircuitState] { -- cgit v1.2.3