diff options
author | Matthew Crymble <matthew.crymble@ni.com> | 2022-04-19 01:16:44 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-06-10 13:24:04 -0500 |
commit | fe5b92b06cf83c4c9a686a800a4ac3762798044a (patch) | |
tree | 3766a96bc7f682659c5ef79db2aa2188b2b57b56 | |
parent | 76e94a606c348c40b59de5165e8648d266624127 (diff) | |
download | uhd-fe5b92b06cf83c4c9a686a800a4ac3762798044a.tar.gz uhd-fe5b92b06cf83c4c9a686a800a4ac3762798044a.tar.bz2 uhd-fe5b92b06cf83c4c9a686a800a4ac3762798044a.zip |
tests: streaming: fix x310 test case values
-rw-r--r-- | host/tests/pytests/test_streaming.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/host/tests/pytests/test_streaming.py b/host/tests/pytests/test_streaming.py index c4916c992..958d4900f 100644 --- a/host/tests/pytests/test_streaming.py +++ b/host/tests/pytests/test_streaming.py @@ -127,7 +127,7 @@ def generate_X310_test_cases(metafunc, test_length): [{}, pytest.param(False, 200e6, 0, "", 200e6, "0", id="1x10GbE-1xTX@200e6")], [{}, pytest.param(False, 100e6, 0, "", 100e6, "0,1", id="1x10GbE-2xTX@100e6")], [{}, pytest.param(False, 200e6, 200e6, "0", 200e6, "0", id="1x10GbE-1xTRX@200e6")], - [{Test_Length_Stress, Test_Length_Smoke}, pytest.param(False, 100e6, 100e6, "0,1", 100e6, "0", id="1x10GbE-2xTRX@100e6")], + [{Test_Length_Stress, Test_Length_Smoke}, pytest.param(False, 100e6, 100e6, "0,1", 100e6, "0,1", id="1x10GbE-2xTRX@100e6")], [{}, pytest.param(True, 200e6, 200e6, "0,1", 0, "", id="2x10GbE-2xRX@200e6")], [{}, pytest.param(True, 200e6, 0, "", 200e6, "0,1", id="2x10GbE-2xTX@200e6")], [{Test_Length_Stress, Test_Length_Smoke}, pytest.param(True, 200e6, 200e6, "0,1", 200e6, "0,1", id="2x10GbE-2xTRX@200e6")], @@ -145,8 +145,8 @@ def generate_X310_TwinRx_test_cases(metafunc, test_length): # Test Lengths dual_SFP rate rx_rate rx_channels tx_rate tx_channels test case ID # -------------------------------------------------------------------------------------------------------------------------------------------- [{}, pytest.param(False, 100e6, 100e6, "0,1,2", 0, "", id="1x10GbE-3xRX@100e6")], - [{}, pytest.param(False, 50e6, 50e6, "0,1,2,4", 0, "", id="1x10GbE-4xRX@50e6")], - [{Test_Length_Stress, Test_Length_Smoke}, pytest.param(True, 100e6, 100e6, "0,1,2,4", 0, "", id="2x10GbE-4xRX@100e6")], + [{}, pytest.param(False, 50e6, 50e6, "0,1,2,3", 0, "", id="1x10GbE-4xRX@50e6")], + [{Test_Length_Stress, Test_Length_Smoke}, pytest.param(True, 100e6, 100e6, "0,1,2,3", 0, "", id="2x10GbE-4xRX@100e6")], ] argvalues = test_length_utils.select_test_cases_by_length(test_length, test_cases) |