aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/ClockListTests.scala
diff options
context:
space:
mode:
authorchick2020-08-14 19:47:53 -0700
committerJack Koenig2020-08-14 19:47:53 -0700
commit6fc742bfaf5ee508a34189400a1a7dbffe3f1cac (patch)
tree2ed103ee80b0fba613c88a66af854ae9952610ce /src/test/scala/firrtlTests/ClockListTests.scala
parentb516293f703c4de86397862fee1897aded2ae140 (diff)
All of src/ formatted with scalafmt
Diffstat (limited to 'src/test/scala/firrtlTests/ClockListTests.scala')
-rw-r--r--src/test/scala/firrtlTests/ClockListTests.scala72
1 files changed, 39 insertions, 33 deletions
diff --git a/src/test/scala/firrtlTests/ClockListTests.scala b/src/test/scala/firrtlTests/ClockListTests.scala
index 9233d4d5..c547448b 100644
--- a/src/test/scala/firrtlTests/ClockListTests.scala
+++ b/src/test/scala/firrtlTests/ClockListTests.scala
@@ -11,12 +11,12 @@ import clocklist._
class ClockListTests extends FirrtlFlatSpec {
private def executeTest(input: String, expected: Seq[String], passes: Seq[Pass]) = {
- val c = passes.foldLeft(Parser.parse(input.split("\n").toIterator)) {
- (c: Circuit, p: Pass) => p.run(c)
+ val c = passes.foldLeft(Parser.parse(input.split("\n").toIterator)) { (c: Circuit, p: Pass) =>
+ p.run(c)
}
- val lines = c.serialize.split("\n") map normalized
+ val lines = c.serialize.split("\n").map(normalized)
- expected foreach { e =>
+ expected.foreach { e =>
lines should contain(e)
}
}
@@ -69,19 +69,21 @@ class ClockListTests extends FirrtlFlatSpec {
| output clk2: Clock
| output clk3: Clock
|""".stripMargin
- val check =
- """Sourcelist: List(h$clkGen$clk1, h$clkGen$clk2, h$clkGen$clk3, clock)
- |Good Origin of clock is clock
- |Good Origin of h.clock is h$clkGen.clk1
- |Good Origin of h$b.clock is h$clkGen.clk2
- |Good Origin of h$c.clock is h$clkGen.clk3
- |""".stripMargin
- val c = passes.foldLeft(CircuitState(parse(input), UnknownForm)) {
- (c: CircuitState, p: Transform) => p.runTransform(c)
- }.circuit
+ val check =
+ """Sourcelist: List(h$clkGen$clk1, h$clkGen$clk2, h$clkGen$clk3, clock)
+ |Good Origin of clock is clock
+ |Good Origin of h.clock is h$clkGen.clk1
+ |Good Origin of h$b.clock is h$clkGen.clk2
+ |Good Origin of h$c.clock is h$clkGen.clk3
+ |""".stripMargin
+ val c = passes
+ .foldLeft(CircuitState(parse(input), UnknownForm)) { (c: CircuitState, p: Transform) =>
+ p.runTransform(c)
+ }
+ .circuit
val writer = new StringWriter()
val retC = new ClockList("HTop", writer).run(c)
- (writer.toString) should be (check)
+ (writer.toString) should be(check)
}
"A->B->C, and A.clock == C.clock" should "still emit C.clock origin" in {
val input =
@@ -101,18 +103,20 @@ class ClockListTests extends FirrtlFlatSpec {
| input clock: Clock
| reg r: UInt<5>, clock
|""".stripMargin
- val check =
- """Sourcelist: List(clock, clkB)
- |Good Origin of clock is clock
- |Good Origin of b.clock is clkB
- |Good Origin of b$c.clock is clock
- |""".stripMargin
- val c = passes.foldLeft(CircuitState(parse(input), UnknownForm)) {
- (c: CircuitState, p: Transform) => p.runTransform(c)
- }.circuit
+ val check =
+ """Sourcelist: List(clock, clkB)
+ |Good Origin of clock is clock
+ |Good Origin of b.clock is clkB
+ |Good Origin of b$c.clock is clock
+ |""".stripMargin
+ val c = passes
+ .foldLeft(CircuitState(parse(input), UnknownForm)) { (c: CircuitState, p: Transform) =>
+ p.runTransform(c)
+ }
+ .circuit
val writer = new StringWriter()
val retC = new ClockList("A", writer).run(c)
- (writer.toString) should be (check)
+ (writer.toString) should be(check)
}
"Have not circuit main be top of clocklist pass" should "still work" in {
val input =
@@ -136,15 +140,17 @@ class ClockListTests extends FirrtlFlatSpec {
| input clock: Clock
|""".stripMargin
val check =
- """Sourcelist: List(clock, clkC)
- |Good Origin of clock is clock
- |Good Origin of c.clock is clkC
- |""".stripMargin
- val c = passes.foldLeft(CircuitState(parse(input), UnknownForm)) {
- (c: CircuitState, p: Transform) => p.runTransform(c)
- }.circuit
+ """Sourcelist: List(clock, clkC)
+ |Good Origin of clock is clock
+ |Good Origin of c.clock is clkC
+ |""".stripMargin
+ val c = passes
+ .foldLeft(CircuitState(parse(input), UnknownForm)) { (c: CircuitState, p: Transform) =>
+ p.runTransform(c)
+ }
+ .circuit
val writer = new StringWriter()
val retC = new ClockList("B", writer).run(c)
- (writer.toString) should be (check)
+ (writer.toString) should be(check)
}
}