aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/CompilerTests.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/firrtlTests/CompilerTests.scala')
-rw-r--r--src/test/scala/firrtlTests/CompilerTests.scala15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/test/scala/firrtlTests/CompilerTests.scala b/src/test/scala/firrtlTests/CompilerTests.scala
index 2eab6e0f..28d09c2d 100644
--- a/src/test/scala/firrtlTests/CompilerTests.scala
+++ b/src/test/scala/firrtlTests/CompilerTests.scala
@@ -8,13 +8,14 @@ import org.scalatest.junit.JUnitRunner
import firrtl.ir.Circuit
import firrtl.{
- HighFirrtlCompiler,
- LowFirrtlCompiler,
- VerilogCompiler,
- Compiler,
- Parser
+ ChirrtlForm,
+ CircuitState,
+ Compiler,
+ HighFirrtlCompiler,
+ LowFirrtlCompiler,
+ Parser,
+ VerilogCompiler
}
-import firrtl.Annotations.AnnotationMap
/**
* An example methodology for testing Firrtl compilers.
@@ -30,7 +31,7 @@ abstract class CompilerSpec extends FlatSpec {
def input: String
def check: String
def getOutput: String = {
- compiler.compile(parse(input), new AnnotationMap(Seq.empty), writer)
+ compiler.compile(CircuitState(parse(input), ChirrtlForm), writer)
writer.toString()
}
}