diff options
author | Virendra Kakade <virendra.kakade@ni.com> | 2022-03-28 14:32:05 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-03-31 07:58:38 -0700 |
commit | fe2e24e79e3e5d714e2bf30da89ee5cd71dcb399 (patch) | |
tree | c5bf2a0ce74d862501c2207b590d7ba154bf9168 /host/tests/pytests | |
parent | 218a75e4dacab7c248ee14b31bbc2213a7aa7866 (diff) | |
download | uhd-fe2e24e79e3e5d714e2bf30da89ee5cd71dcb399.tar.gz uhd-fe2e24e79e3e5d714e2bf30da89ee5cd71dcb399.tar.bz2 uhd-fe2e24e79e3e5d714e2bf30da89ee5cd71dcb399.zip |
tests: enable automated streaming tests on X410
Enable automated streaming tests to run on X410.
Disable tests on non-X410 devices for now.
Run only DPDK tests since the setup can not withstand
4Rx 4Tx and 4FDx in non-DPDK mode in manual testing.
And we need to enable running these tests for 100GbE testing.
Adjust streaming test thresholds to new values which seemed to work fine
in manual testing. Might make them tighter in future based on more data.
Diffstat (limited to 'host/tests/pytests')
-rw-r--r-- | host/tests/pytests/test_streaming.py | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/host/tests/pytests/test_streaming.py b/host/tests/pytests/test_streaming.py index 9d3f566fc..741c51a07 100644 --- a/host/tests/pytests/test_streaming.py +++ b/host/tests/pytests/test_streaming.py @@ -263,16 +263,17 @@ def test_streaming(pytestconfig, dut_type, use_dpdk, dual_SFP, rate, rx_rate, rx print(batch_run_benchmark_rate.get_summary_string(stats, iterations, benchmark_rate_params)) # compare results against thresholds - dropped_samps_threshold = 0 - overruns_threshold = 2 - rx_timeouts_threshold = 0 - rx_seq_err_threshold = 0 + # TODO: Have non adhoc better thresholds. + dropped_samps_threshold = 50 + overruns_threshold = 50 + rx_timeouts_threshold = 50 + rx_seq_err_threshold = 50 - underruns_threshold = 2 - tx_timeouts_threshold = 0 - tx_seq_err_threshold = 0 + underruns_threshold = 50 + tx_timeouts_threshold = 50 + tx_seq_err_threshold = 50 - late_cmds_threshold = 0 + late_cmds_threshold = 50 # TODO: define custom failed assertion explanations to avoid extra output # https://docs.pytest.org/en/6.2.x/assert.html#defining-your-own-explanation-for-failed-assertions |