1
0
mirror of https://github.com/corundum/corundum.git synced 2025-01-16 08:12:53 +08:00

Add same-width test cases to DMA clients

This commit is contained in:
Alex Forencich 2021-02-16 01:26:05 -08:00
parent 33bc8c21ae
commit 742ef1c272
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ rtl_dir = os.path.abspath(os.path.join(tests_dir, '..', '..', 'rtl'))
@pytest.mark.parametrize(("ram_data_width", "axis_data_width"), [
(128, 64),
(128, 64), (128, 128),
(256, 64), (256, 128),
])
def test_dma_client_axis_sink(request, ram_data_width, axis_data_width):

View File

@ -167,7 +167,7 @@ rtl_dir = os.path.abspath(os.path.join(tests_dir, '..', '..', 'rtl'))
@pytest.mark.parametrize(("ram_data_width", "axis_data_width"), [
(128, 64),
(128, 64), (128, 128),
(256, 64), (256, 128),
])
def test_dma_client_axis_source(request, ram_data_width, axis_data_width):