From 82f62e04ed71d4507b72f784b3c230dda1262340 Mon Sep 17 00:00:00 2001 From: Jack Koenig Date: Tue, 27 Nov 2018 12:57:30 -0800 Subject: Add "none" compiler (#953) Where the high form compiler removes Chirrtl (and runs some checks), this compiler does nothing but read in the circuit and then emit it--- src/test/scala/firrtlTests/DriverSpec.scala | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/test') diff --git a/src/test/scala/firrtlTests/DriverSpec.scala b/src/test/scala/firrtlTests/DriverSpec.scala index 4cc7bc90..049547ac 100644 --- a/src/test/scala/firrtlTests/DriverSpec.scala +++ b/src/test/scala/firrtlTests/DriverSpec.scala @@ -364,6 +364,7 @@ class DriverSpec extends FreeSpec with Matchers with BackendCompilationUtilities "To a single file with file extension depending on the compiler by default" in { Seq( + "none" -> "./Top.fir", "low" -> "./Top.lo.fir", "high" -> "./Top.hi.fir", "middle" -> "./Top.mid.fir", @@ -383,6 +384,7 @@ class DriverSpec extends FreeSpec with Matchers with BackendCompilationUtilities } "To a single file per module if OneFilePerModule is specified" in { Seq( + "none" -> Seq("./Top.fir", "./Child.fir"), "low" -> Seq("./Top.lo.fir", "./Child.lo.fir"), "high" -> Seq("./Top.hi.fir", "./Child.hi.fir"), "middle" -> Seq("./Top.mid.fir", "./Child.mid.fir"), -- cgit v1.2.3