aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests/devtest/uhd_test_base.py
diff options
context:
space:
mode:
authorAndrej Rode <andrej.rode@ettus.com>2016-11-21 11:06:58 -0800
committerMartin Braun <martin.braun@ettus.com>2016-12-01 12:44:41 -0800
commit7fc01d5fe3c8ecc71d1b8485e4999e721becf67c (patch)
tree68116b7b0703f25ef8c1ce99e01bfdb377656bfb /host/tests/devtest/uhd_test_base.py
parentf583c77fc2dfb1308520164eb1c6260b0b0d8d79 (diff)
downloaduhd-7fc01d5fe3c8ecc71d1b8485e4999e721becf67c.tar.gz
uhd-7fc01d5fe3c8ecc71d1b8485e4999e721becf67c.tar.bz2
uhd-7fc01d5fe3c8ecc71d1b8485e4999e721becf67c.zip
devtest: dont check number of samples in benchmark rate test and accept
10 underruns in SISO
Diffstat (limited to 'host/tests/devtest/uhd_test_base.py')
-rwxr-xr-xhost/tests/devtest/uhd_test_base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/host/tests/devtest/uhd_test_base.py b/host/tests/devtest/uhd_test_base.py
index ae094c94b..62a11c0ef 100755
--- a/host/tests/devtest/uhd_test_base.py
+++ b/host/tests/devtest/uhd_test_base.py
@@ -209,6 +209,7 @@ class uhd_example_test_case(uhd_test_case):
Calls run_test().
"""
for test_name, test_args in self.test_params.iteritems():
+ time.sleep(15) # Wait for X300 devices to reclaim them
if not test_args.has_key('products') or (self.usrp_info['product'] in test_args.get('products', [])):
run_results = self.run_test(test_name, test_args)
passed = bool(run_results)