diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-07-03 20:15:35 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 12:16:25 -0800 |
commit | c256b9df6502536c2e451e690f1ad5962c664d1a (patch) | |
tree | a83ad13e6f5978bbe14bb3ecf8294ba1e3d28db4 /host/tests/devtest | |
parent | 9a8435ed998fc5c65257f4c55768750b227ab19e (diff) | |
download | uhd-c256b9df6502536c2e451e690f1ad5962c664d1a.tar.gz uhd-c256b9df6502536c2e451e690f1ad5962c664d1a.tar.bz2 uhd-c256b9df6502536c2e451e690f1ad5962c664d1a.zip |
x300/mpmd: Port all RFNoC devices to the new RFNoC framework
Co-Authored-By: Alex Williams <alex.williams@ni.com>
Co-Authored-By: Sugandha Gupta <sugandha.gupta@ettus.com>
Co-Authored-By: Brent Stapleton <brent.stapleton@ettus.com>
Co-Authored-By: Ciro Nishiguchi <ciro.nishiguchi@ni.com>
Diffstat (limited to 'host/tests/devtest')
-rwxr-xr-x | host/tests/devtest/devtest_e3xx.py | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/host/tests/devtest/devtest_e3xx.py b/host/tests/devtest/devtest_e3xx.py index a93c15ea5..9d21f8849 100755 --- a/host/tests/devtest/devtest_e3xx.py +++ b/host/tests/devtest/devtest_e3xx.py @@ -1,12 +1,16 @@ # # Copyright 2015 Ettus Research LLC # Copyright 2018 Ettus Research, a National Instruments Company +# Copyright 2019 Ettus Research, a National Instruments Brand # # SPDX-License-Identifier: GPL-3.0-or-later # """ -Run device tests for the E3XX series. +Run device tests for the E31X series. """ + +# pylint: disable=wrong-import-position +# pylint: disable=unused-import from usrp_probe_test import uhd_usrp_probe_test from benchmark_rate_test import uhd_benchmark_rate_test uhd_benchmark_rate_test.tests = { @@ -35,10 +39,15 @@ uhd_benchmark_rate_test.tests = { from rx_samples_to_file_test import rx_samples_to_file_test rx_samples_to_file_test.tests = { - 'default': { + 'chan0': { 'duration': 1, 'subdev': 'A:0', - 'rate': 5e6, + 'rate': 1e6, + }, + 'chan1': { + 'duration': 1, + 'subdev': 'A:1', + 'rate': 1e6, }, } @@ -48,7 +57,7 @@ uhd_tx_waveforms_test.tests = { 'chan': '0', }, 'chan1': { - 'chan': '0', + 'chan': '1', }, 'both_chans': { 'chan': '0,1', @@ -57,4 +66,3 @@ uhd_tx_waveforms_test.tests = { from tx_bursts_test import uhd_tx_bursts_test from test_pps_test import uhd_test_pps_test - |