You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
Software version I'm using: org.chipsalliance::chisel:5.0.0, edu.berkeley.cs::chiseltest:5.0.0, org.chipsalliance:::chisel-plugin:5.0.0 running on scala 2.13.8. How to reproduce error: Write up a ChiselTest like this:
class Datapath_test extends AnyFreeSpec with ChiselScalatestTester{
"blah blah blah" in {
test(new Datapath).withChiselAnnotations(
Seq(ThrowOnFirstErrorAnnotation)
){dut => ... }
Error message:
- blah blah blah *** FAILED ***
scala.NotImplementedError: TODO: convert ThrowOnFirstErrorAnnotation
at chiseltest.simulator.ChiselBridge$.convert(ChiselBridge.scala:149)
at chiseltest.simulator.ChiselBridge$.$anonfun$annosToState$2(ChiselBridge.scala:93)
at scala.collection.immutable.List.map(List.scala:246)
at scala.collection.immutable.List.map(List.scala:79)
at chiseltest.simulator.ChiselBridge$.annosToState(ChiselBridge.scala:93)
at chiseltest.simulator.ChiselBridge$.elaborate(ChiselBridge.scala:73)
at chiseltest.simulator.Compiler$.elaborate(Compiler.scala:19)
at chiseltest.internal.BackendExecutive$.start(BackendExecutive.scala:23)
at chiseltest.defaults.package$.createDefaultTester(defaults.scala:25)
at chiseltest.ChiselScalatestTester$TestBuilder.apply(ChiselScalatestTester.scala:32)
...
Other information:
specifying PrintFullStackTraceAnnotation instead of ThrowOnFirstErrorAnnotation also yields the similar "NotImplementedError".
The text was updated successfully, but these errors were encountered:
Software version I'm using:
org.chipsalliance::chisel:5.0.0
,edu.berkeley.cs::chiseltest:5.0.0
,org.chipsalliance:::chisel-plugin:5.0.0
running onscala 2.13.8
.How to reproduce error: Write up a ChiselTest like this:
Error message:
Other information:
specifying
PrintFullStackTraceAnnotation
instead ofThrowOnFirstErrorAnnotation
also yields the similar "NotImplementedError".The text was updated successfully, but these errors were encountered: