aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests/devtest/bitbang_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'host/tests/devtest/bitbang_test.py')
-rwxr-xr-xhost/tests/devtest/bitbang_test.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/host/tests/devtest/bitbang_test.py b/host/tests/devtest/bitbang_test.py
index 8f6ea7598..5e4eb6e37 100755
--- a/host/tests/devtest/bitbang_test.py
+++ b/host/tests/devtest/bitbang_test.py
@@ -11,7 +11,9 @@ from uhd_test_base import uhd_example_test_case
class bitbang_test(uhd_example_test_case):
""" Run gpio --bitbang. """
- tests = {'default': {},}
+ tests = {'default': {
+ 'addl_args': [],
+ },}
def setup_example(self):
"""
@@ -27,6 +29,7 @@ class bitbang_test(uhd_example_test_case):
self.create_addr_args_str(),
'--bitbang',
]
+ args += test_args['addl_args']
(app, run_results) = self.run_example('gpio', args)
# Evaluate pass/fail:
run_results['passed'] = all([
@@ -35,4 +38,3 @@ class bitbang_test(uhd_example_test_case):
])
self.report_example_results(test_name, run_results)
return run_results
-