diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-08-21 09:43:20 -0700 |
---|---|---|
committer | Brent Stapleton <bstapleton@g.hmc.edu> | 2018-08-22 18:37:12 -0700 |
commit | 9c7d251b32eb476e11f8fce13a797c4de9abc796 (patch) | |
tree | b5a398480e689bc85a965573a24d81915849c53d /host/tests/devtest/rx_samples_to_file_test.py | |
parent | 21d725084912d29e15099e24d23b48592d9dcdc4 (diff) | |
download | uhd-9c7d251b32eb476e11f8fce13a797c4de9abc796.tar.gz uhd-9c7d251b32eb476e11f8fce13a797c4de9abc796.tar.bz2 uhd-9c7d251b32eb476e11f8fce13a797c4de9abc796.zip |
devtest: Remove parsing for DD.. and SS..
Detecting drops by parsing for DD and SS was a flawed method. Tools
should find those programmatically. Plus, the string 'DDC' would
interfere with the regex. Also, we're now using
UHD_LOG_FASTPATH_DISABLE.
Diffstat (limited to 'host/tests/devtest/rx_samples_to_file_test.py')
-rwxr-xr-x | host/tests/devtest/rx_samples_to_file_test.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/host/tests/devtest/rx_samples_to_file_test.py b/host/tests/devtest/rx_samples_to_file_test.py index fe03dc9f8..b12eae9ad 100755 --- a/host/tests/devtest/rx_samples_to_file_test.py +++ b/host/tests/devtest/rx_samples_to_file_test.py @@ -45,11 +45,9 @@ class rx_samples_to_file_test(uhd_example_test_case): if test_args.has_key('subdev'): args.append('--subdev') args.append(test_args['subdev']) - (app, run_results) = self.run_example('rx_samples_to_file', args) + _, run_results = self.run_example('rx_samples_to_file', args) # Evaluate pass/fail: run_results['passed'] = all([ - not run_results['has_D'], - not run_results['has_S'], run_results['return_code'] == 0, ]) self.report_example_results(test_name, run_results) |