We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 562e9ac commit 30d1e3fCopy full SHA for 30d1e3f
lib/src/test/scala/util/FullCompileSpec.scala
@@ -50,9 +50,16 @@ abstract class FullCompileSpec extends FunSuite:
50
given options.CompilerOptions.Backend = backends.verilog.v2001
51
dut.compile.lintVerilog
52
53
+ // TODO: restore verilator when https://github.com/verilator/verilator/issues/6492
54
+ // is fixed
55
test("verilog.v95 compilation with no error"):
56
given options.CompilerOptions.Backend = backends.verilog.v95
- dut.compile.lintVerilog
57
+ val cd = dut.compile
58
+ List(iverilog, vlog, xvlog).foreach { linter =>
59
+ if (linter.isAvailable)
60
+ given LinterOptions.VerilogLinter = linter
61
+ cd.lint
62
+ }
63
64
test("vhdl[default = v2008] compilation with no error"):
65
given options.CompilerOptions.Backend = backends.vhdl
0 commit comments