aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests
diff options
context:
space:
mode:
Diffstat (limited to 'host/tests')
-rw-r--r--host/tests/devtest/usrp_probe.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/host/tests/devtest/usrp_probe.py b/host/tests/devtest/usrp_probe.py
index 76e531906..64d04f0d2 100644
--- a/host/tests/devtest/usrp_probe.py
+++ b/host/tests/devtest/usrp_probe.py
@@ -26,6 +26,8 @@ def get_usrp_list(device_filter=None, env=None):
if not re.match("Device Address", uhd_string):
continue
this_result = {k: v for k, v in re.findall(" ([a-z]+): (.*)", uhd_string)}
+ if (this_result.get('reachable',None)) == "No":
+ continue
args_string = ""
try:
args_string = "type={},serial={}".format(this_result['type'], this_result['serial'])