diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-11-12 18:30:37 +0100 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-11-16 14:26:24 -0800 |
commit | 0d2779b2d3fe7f7060fa1b8e943734f88f81711f (patch) | |
tree | a4ec6d04654a0b43c5c13ec7850f0e90a852544f /host/tests | |
parent | e3a96adb7b0d9c51b9749398241dc21c25f4af6c (diff) | |
download | uhd-0d2779b2d3fe7f7060fa1b8e943734f88f81711f.tar.gz uhd-0d2779b2d3fe7f7060fa1b8e943734f88f81711f.tar.bz2 uhd-0d2779b2d3fe7f7060fa1b8e943734f88f81711f.zip |
tests: Remove skip_dram from streaming performance test script
Diffstat (limited to 'host/tests')
-rwxr-xr-x | host/tests/streaming_performance/run_X3xx_max_rate_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/tests/streaming_performance/run_X3xx_max_rate_tests.py b/host/tests/streaming_performance/run_X3xx_max_rate_tests.py index 373447212..d07696749 100755 --- a/host/tests/streaming_performance/run_X3xx_max_rate_tests.py +++ b/host/tests/streaming_performance/run_X3xx_max_rate_tests.py @@ -127,14 +127,14 @@ def run_tests_for_single_10G(path, addr, iterations, duration, use_dpdk=False): def run_tests_for_dual_10G(path, addr, second_addr, iterations, duration, use_dpdk=False): if use_dpdk == True: base_params = { - "args": ("addr={},second_addr={},skip_dram=1," + "args": ("addr={},second_addr={}," "enable_tx_dual_eth=1,use_dpdk=1") .format(addr, second_addr), "duration": duration } else: base_params = { - "args": "addr={},second_addr={},skip_dram=1,enable_tx_dual_eth=1" + "args": "addr={},second_addr={},enable_tx_dual_eth=1" .format(addr, second_addr), "duration": duration } |