Skip to content

Commit 30d1e3f

Browse files
author
Oron Port
committed
skip verilator with verilog.v95 tests until verilator/verilator#6492 is fixed
1 parent 562e9ac commit 30d1e3f

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

lib/src/test/scala/util/FullCompileSpec.scala

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,16 @@ abstract class FullCompileSpec extends FunSuite:
5050
given options.CompilerOptions.Backend = backends.verilog.v2001
5151
dut.compile.lintVerilog
5252

53+
// TODO: restore verilator when https://github.com/verilator/verilator/issues/6492
54+
// is fixed
5355
test("verilog.v95 compilation with no error"):
5456
given options.CompilerOptions.Backend = backends.verilog.v95
55-
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+
}
5663

5764
test("vhdl[default = v2008] compilation with no error"):
5865
given options.CompilerOptions.Backend = backends.vhdl

0 commit comments

Comments
 (0)