aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorHenry Cook2018-04-11 11:35:43 -0700
committerJack Koenig2018-04-11 11:35:43 -0700
commit997fb0adf99813f5eb396fdc35026ee5c185445f (patch)
treeea7b0e3b500a609d91ca7a1f22e0467301ee578f /src/test
parent27ee6fbbdf2b1854503ef51ffc0e2108a939d50c (diff)
Cleaning up BlackBoxSourceHelper (#786)
Create sources once per module, not once per instance Clean up writing the file list Don't prepend file list with '-v's (non-standard and not all verilog) Change file list file name (not all verilog) Use ListSets for determinism
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scala/firrtlTests/transforms/BlacklBoxSourceHelperSpec.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/firrtlTests/transforms/BlacklBoxSourceHelperSpec.scala b/src/test/scala/firrtlTests/transforms/BlacklBoxSourceHelperSpec.scala
index 4c550c46..d102378f 100644
--- a/src/test/scala/firrtlTests/transforms/BlacklBoxSourceHelperSpec.scala
+++ b/src/test/scala/firrtlTests/transforms/BlacklBoxSourceHelperSpec.scala
@@ -59,7 +59,7 @@ class BlacklBoxSourceHelperTransformSpec extends LowTransformSpec {
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)
+ new java.io.File(s"test_run_dir/${BlackBoxSourceHelper.fileListName}").exists should be (true)
}
"verilog compiler" should "have BlackBoxSourceHelper transform" in {