aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests/pytests/test_streaming.py
diff options
context:
space:
mode:
Diffstat (limited to 'host/tests/pytests/test_streaming.py')
-rw-r--r--host/tests/pytests/test_streaming.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/host/tests/pytests/test_streaming.py b/host/tests/pytests/test_streaming.py
index a7e26354a..9a1af66fc 100644
--- a/host/tests/pytests/test_streaming.py
+++ b/host/tests/pytests/test_streaming.py
@@ -244,6 +244,12 @@ def test_streaming(pytestconfig, dut_type, use_dpdk, dual_10G, rate, rx_rate, rx
benchmark_rate_params["tx_rate"] = tx_rate
benchmark_rate_params["tx_channels"] = tx_channels
+ # Run X410 streaming tests in multi_streamer mode and high thread priority
+ # since those settings allow for best performance.
+ if dut_type.lower() == "x410":
+ benchmark_rate_params["multi_streamer"] = 1
+ benchmark_rate_params["priority"] = "high"
+
# run benchmark rate
print()
results = batch_run_benchmark_rate.run(benchmark_rate_path, iterations, benchmark_rate_params)