test.compat: reenable tests converting to Verilog.

This commit is contained in:
whitequark 2019-01-26 15:29:09 +00:00
parent 4887771e4a
commit 7890c0adc8
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
import warnings
from ...hdl import Fragment
from ...hdl.ir import Fragment
from ...back import verilog
from .conv_output import ConvOutput

View file

@ -1,13 +1,13 @@
from ...compat import *
# from ...compat.fhdl import verilog
from ...compat.fhdl import verilog
class SimCase:
def setUp(self, *args, **kwargs):
self.tb = self.TestBench(*args, **kwargs)
# def test_to_verilog(self):
# verilog.convert(self.tb)
def test_to_verilog(self):
verilog.convert(self.tb)
def run_with(self, generator):
run_simulation(self.tb, generator)