diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-04-22 18:14:44 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-04-22 18:14:44 -0700 |
commit | b7c296f58399f0ef1fee7b3ef3d7da957f551558 (patch) | |
tree | 721dd698e6988df697250739c7d8b170644a7a85 /host/tests | |
parent | 0502431895eda784aa512b1a9961effd0e8f94ee (diff) | |
download | uhd-b7c296f58399f0ef1fee7b3ef3d7da957f551558.tar.gz uhd-b7c296f58399f0ef1fee7b3ef3d7da957f551558.tar.bz2 uhd-b7c296f58399f0ef1fee7b3ef3d7da957f551558.zip |
devtest: Run uhd_find_devices from current build
Diffstat (limited to 'host/tests')
-rw-r--r-- | host/tests/devtest/usrp_probe.py | 4 |
1 files changed, 2 insertions, 2 deletions
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" |