diff options
-rwxr-xr-x | host/tests/devtest/gpio_test.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/host/tests/devtest/gpio_test.py b/host/tests/devtest/gpio_test.py index 0112883e6..4681d69ce 100755 --- a/host/tests/devtest/gpio_test.py +++ b/host/tests/devtest/gpio_test.py @@ -32,6 +32,9 @@ class gpio_test(uhd_example_test_case): app.returncode == 0, re.search('All tests passed!', app.stdout) is not None, ]) + if not run_results['passed']: + print(app.stdout) + print(app.stderr) self.report_example_results(test_name, run_results) return run_results |