)
-@contextmanager
-def do_sim(test_case, dut, traces=(), ports=None):
+def write_il(test_case, dut, ports=()):
# only elaborate once, cuz users' stupid code breaks if elaborating twice
dut = Fragment.get(dut, platform=None)
if "sync" not in dut.domains:
dut.add_domains(ClockDomain("sync"))
- sim = Simulator(dut)
path = get_test_path(test_case, "sim_test_out")
path.parent.mkdir(parents=True, exist_ok=True)
- vcd_path = path.with_suffix(".vcd")
- gtkw_path = path.with_suffix(".gtkw")
il_path = path.with_suffix(".il")
+ il_path.write_text(convert(dut, ports=ports), encoding="utf-8")
+ return dut, path
+
+
+@contextmanager
+def do_sim(test_case, dut, traces=(), ports=None):
if ports is None:
ports = traces
- il_path.write_text(convert(dut, ports=ports), encoding="utf-8")
+ dut, path = write_il(test_case, dut, ports)
+ sim = Simulator(dut)
+ vcd_path = path.with_suffix(".vcd")
+ gtkw_path = path.with_suffix(".gtkw")
with sim.write_vcd(vcd_path.open("wt", encoding="utf-8"),
gtkw_path.open("wt", encoding="utf-8"),
traces=traces):