From b7c296f58399f0ef1fee7b3ef3d7da957f551558 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Fri, 22 Apr 2016 18:14:44 -0700 Subject: devtest: Run uhd_find_devices from current build --- host/tests/devtest/usrp_probe.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host/tests/devtest/usrp_probe.py') diff --git a/host/tests/devtest/usrp_probe.py b/host/tests/devtest/usrp_probe.py index ba3c645e4..c734f48a1 100644 --- a/host/tests/devtest/usrp_probe.py +++ b/host/tests/devtest/usrp_probe.py @@ -24,9 +24,9 @@ def get_usrp_list(device_filter=None): """ Returns a list of dicts that contain USRP info """ try: if device_filter is not None: - output = subprocess.check_output(['uhd_find_devices', '--args', device_filter]) + output = subprocess.check_output(['../../utils/uhd_find_devices', '--args', device_filter]) else: - output = subprocess.check_output('uhd_find_devices') + output = subprocess.check_output('../../utils/uhd_find_devices') except subprocess.CalledProcessError: return [] split_re = "\n*-+\n-- .*\n-+\n" -- cgit v1.2.3