test.compat: reenable tests converting to Verilog.
This commit is contained in:
parent
4887771e4a
commit
7890c0adc8
|
@ -1,6 +1,6 @@
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from ...hdl import Fragment
|
from ...hdl.ir import Fragment
|
||||||
from ...back import verilog
|
from ...back import verilog
|
||||||
from .conv_output import ConvOutput
|
from .conv_output import ConvOutput
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
from ...compat import *
|
from ...compat import *
|
||||||
# from ...compat.fhdl import verilog
|
from ...compat.fhdl import verilog
|
||||||
|
|
||||||
|
|
||||||
class SimCase:
|
class SimCase:
|
||||||
def setUp(self, *args, **kwargs):
|
def setUp(self, *args, **kwargs):
|
||||||
self.tb = self.TestBench(*args, **kwargs)
|
self.tb = self.TestBench(*args, **kwargs)
|
||||||
|
|
||||||
# def test_to_verilog(self):
|
def test_to_verilog(self):
|
||||||
# verilog.convert(self.tb)
|
verilog.convert(self.tb)
|
||||||
|
|
||||||
def run_with(self, generator):
|
def run_with(self, generator):
|
||||||
run_simulation(self.tb, generator)
|
run_simulation(self.tb, generator)
|
||||||
|
|
Loading…
Reference in a new issue