aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests
diff options
context:
space:
mode:
authorLane Kolbly <lane.kolbly@ni.com>2022-02-07 14:21:29 -0600
committerLane Kolbly <lane@rscheme.org>2022-03-23 21:09:39 -0500
commit897384aabf121383c259457313b09744c16fb55f (patch)
tree8cdb0d2306ca090803e614b702efa311a2b5685e /host/tests
parent99ad89609b6c71faff625adbb0a284bc2d405601 (diff)
downloaduhd-897384aabf121383c259457313b09744c16fb55f.tar.gz
uhd-897384aabf121383c259457313b09744c16fb55f.tar.bz2
uhd-897384aabf121383c259457313b09744c16fb55f.zip
host: devtest: Allow getting mgmt_addr in tests
Diffstat (limited to 'host/tests')
-rw-r--r--host/tests/devtest/usrp_probe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/tests/devtest/usrp_probe.py b/host/tests/devtest/usrp_probe.py
index b9afd4d50..b25b8d96f 100644
--- a/host/tests/devtest/usrp_probe.py
+++ b/host/tests/devtest/usrp_probe.py
@@ -25,7 +25,7 @@ def get_usrp_list(device_filter=None, env=None):
for uhd_string in uhd_strings:
if not re.match("Device Address", uhd_string):
continue
- this_result = {k: v for k, v in re.findall(" ([a-z]+): (.*)", uhd_string)}
+ this_result = {k: v for k, v in re.findall(" ([a-z_]+): (.*)", uhd_string)}
if this_result.get('reachable') == "No":
continue
args_string = ""