Skip to content

Commit

Permalink
Use newer ADSY1100 devices modeles for emulation
Browse files Browse the repository at this point in the history
Signed-off-by: Travis F. Collins <[email protected]>
  • Loading branch information
tfcollins committed Nov 12, 2024
1 parent 9a63a61 commit e7acf21
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/test_ad9084.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

import pytest

hardware = ["ad9084", "ad9084_tdd"]
# hardware = ["ad9084", "ad9084_tdd"] # older builds
hardware = ["adsy1100"]
classname = "adi.ad9084"


Expand Down Expand Up @@ -96,15 +97,15 @@ def test_ad9084_rx_data(test_dma_rx, iio_uri, classname, channel):
#########################################
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("channel", [0, 1, 2, 3])
@pytest.mark.parametrize("channel", [0, 1])
def test_ad9084_tx_data(test_dma_tx, iio_uri, classname, channel):
test_dma_tx(iio_uri, classname, channel)


#########################################
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("channel", [0, 1, 2, 3])
@pytest.mark.parametrize("channel", [0, 1])
@pytest.mark.parametrize(
"param_set",
[
Expand Down Expand Up @@ -134,7 +135,7 @@ def test_ad9084_cyclic_buffers(
#########################################
@pytest.mark.iio_hardware(hardware)
@pytest.mark.parametrize("classname", [(classname)])
@pytest.mark.parametrize("channel", [0, 1, 2, 3])
@pytest.mark.parametrize("channel", [0, 1])
@pytest.mark.parametrize(
"param_set",
[
Expand Down

0 comments on commit e7acf21

Please sign in to comment.