tests: Correctly handle the reuse_hwif_typedefs parameter
This test parameter was not being passed to the exporter function. This meant only the default setting (True) was tested Signed-off-by: Paul Roukema <paul.roukema@fidus.com>
This commit is contained in:
committed by
Alex Mykyta
parent
cbeb6172a8
commit
76fdb6e2ff
@@ -33,6 +33,7 @@ class BaseTestCase(unittest.TestCase):
|
|||||||
# Other exporter args:
|
# Other exporter args:
|
||||||
retime_read_fanin = False
|
retime_read_fanin = False
|
||||||
retime_read_response = False
|
retime_read_response = False
|
||||||
|
reuse_hwif_typedefs = True
|
||||||
|
|
||||||
#: this gets auto-loaded via the _load_request autouse fixture
|
#: this gets auto-loaded via the _load_request autouse fixture
|
||||||
request = None # type: pytest.FixtureRequest
|
request = None # type: pytest.FixtureRequest
|
||||||
@@ -94,6 +95,7 @@ class BaseTestCase(unittest.TestCase):
|
|||||||
cpuif_cls=cls.cpuif.cpuif_cls,
|
cpuif_cls=cls.cpuif.cpuif_cls,
|
||||||
retime_read_fanin=cls.retime_read_fanin,
|
retime_read_fanin=cls.retime_read_fanin,
|
||||||
retime_read_response=cls.retime_read_response,
|
retime_read_response=cls.retime_read_response,
|
||||||
|
reuse_hwif_typedefs=cls.reuse_hwif_typedefs
|
||||||
)
|
)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|||||||
Reference in New Issue
Block a user