summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Meyerhoff <grant.meyerhoff@ni.com>2023-07-24 10:42:06 -0500
committerAki Tomita <121511582+atomita-ni@users.noreply.github.com>2023-07-25 09:45:11 -0500
commitf4c7802e07647b56bb8ae232a93c07a9a262ecd4 (patch)
tree1901ea6158308f1976c60bce28b4da91b5f72a56
parentdevtest: disable rx_samples_to_file_test for x440 (diff)
downloaduhd-f4c7802e07647b56bb8ae232a93c07a9a262ecd4.tar.xz
uhd-f4c7802e07647b56bb8ae232a93c07a9a262ecd4.zip
devtest: correct docstrings with example being run
-rw-r--r--host/tests/devtest/python_api_test.py2
-rwxr-xr-xhost/tests/devtest/tx_bursts_test.py4
-rw-r--r--host/tests/devtest/tx_waveforms_test.py2
-rwxr-xr-xhost/tests/devtest/usrp_probe_test.py2
4 files changed, 5 insertions, 5 deletions
diff --git a/host/tests/devtest/python_api_test.py b/host/tests/devtest/python_api_test.py
index 9cf168232..abcd84cb7 100644
--- a/host/tests/devtest/python_api_test.py
+++ b/host/tests/devtest/python_api_test.py
@@ -12,7 +12,7 @@ from uhd_test_base import shell_application
from uhd_test_base import UHDPythonTestCase
class uhd_python_api_test(UHDPythonTestCase):
- """ Run multi_usrp_test """
+ """ Run python_api_test """
test_name = 'uhd_python_api_test'
def run_test(self, test_name, test_args):
diff --git a/host/tests/devtest/tx_bursts_test.py b/host/tests/devtest/tx_bursts_test.py
index 7d790ff25..db20dd004 100755
--- a/host/tests/devtest/tx_bursts_test.py
+++ b/host/tests/devtest/tx_bursts_test.py
@@ -5,13 +5,13 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
-""" Run the test for tx_burst """
+""" Run the test for tx_bursts """
import re
from uhd_test_base import uhd_example_test_case
class uhd_tx_bursts_test(uhd_example_test_case):
- """ Run test_messages. """
+ """ Run tx_bursts and check output. """
tests = {
'default': {
'nsamps': 10000,
diff --git a/host/tests/devtest/tx_waveforms_test.py b/host/tests/devtest/tx_waveforms_test.py
index 4d555b48c..ddb6e0673 100644
--- a/host/tests/devtest/tx_waveforms_test.py
+++ b/host/tests/devtest/tx_waveforms_test.py
@@ -11,7 +11,7 @@ from uhd_test_base import uhd_example_test_case
class uhd_tx_waveforms_test(uhd_example_test_case):
"""
- Run benchmark_rate in various configurations.
+ Run tx_waveforms and check output.
"""
tests = {}
diff --git a/host/tests/devtest/usrp_probe_test.py b/host/tests/devtest/usrp_probe_test.py
index c1f50a7cb..61153a67c 100755
--- a/host/tests/devtest/usrp_probe_test.py
+++ b/host/tests/devtest/usrp_probe_test.py
@@ -5,7 +5,7 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
-""" Run the test for tx_burst """
+""" Run the test for uhd_usrp_probe """
import re
from uhd_test_base import uhd_example_test_case