blob: 4c550c46618a44f025ab9c72137eeac996455bcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
// See LICENSE for license details.
package firrtlTests.transforms
import firrtl.annotations.{Annotation, CircuitName, ModuleName}
import firrtl.transforms._
import firrtl.{FIRRTLException, Transform, VerilogCompiler}
import firrtlTests.{HighTransformSpec, LowTransformSpec}
import org.scalacheck.Test.Failed
import org.scalatest.{FreeSpec, Matchers, Succeeded}
class BlacklBoxSourceHelperTransformSpec extends LowTransformSpec {
def transform: Transform = new BlackBoxSourceHelper
private val moduleName = ModuleName("Top", CircuitName("Top"))
private val input = """
|circuit Top :
|
| extmodule AdderExtModule :
| input foo : UInt<16>
| output bar : UInt<16>
|
| defname = BBFAdd
|
| module Top :
| input x : UInt<16>
| output y : UInt<16>
|
| inst a1 of AdderExtModule
| a1.foo <= x
| y <= a1.bar
""".stripMargin
private val output = """
|circuit Top :
|
| extmodule AdderExtModule :
| input foo : UInt<16>
| output bar : UInt<16>
|
| defname = BBFAdd
|
| module Top :
| input x : UInt<16>
| output y : UInt<16>
|
| inst a1 of AdderExtModule
| y <= a1.bar
| a1.foo <= x
""".stripMargin
"annotated external modules" should "appear in output directory" in {
val annos = Seq(
BlackBoxTargetDirAnno("test_run_dir"),
BlackBoxResourceAnno(moduleName, "/blackboxes/AdderExtModule.v")
)
execute(input, output, annos)
new java.io.File("test_run_dir/AdderExtModule.v").exists should be (true)
new java.io.File(s"test_run_dir/${BlackBoxSourceHelper.FileListName}").exists should be (true)
}
"verilog compiler" should "have BlackBoxSourceHelper transform" in {
val verilogCompiler = new VerilogCompiler
verilogCompiler.transforms.map { x => x.getClass } should contain (classOf[BlackBoxSourceHelper])
}
}
|