diff options
Diffstat (limited to 'host/tests')
-rw-r--r-- | host/tests/devtest/python_api_test.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/host/tests/devtest/python_api_test.py b/host/tests/devtest/python_api_test.py index 9d879cae3..3e51be7d5 100644 --- a/host/tests/devtest/python_api_test.py +++ b/host/tests/devtest/python_api_test.py @@ -43,7 +43,12 @@ class uhd_python_api_test(uhd_test_case): args = [ self.create_addr_args_str(), ] - app = shell_application(multi_usrp_test_path) + app = None + if os.name == 'nt': + args.insert(0, multi_usrp_test_path) + app = shell_application('python') + else: + app = shell_application(multi_usrp_test_path) app.run(args) run_results = { 'return_code': app.returncode, |