diff options
author | Josh Blum <josh@joshknows.com> | 2010-07-09 18:26:10 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-07-09 18:26:10 -0700 |
commit | 75537e896bbd0aeb8d988b6ad33b5ab2d35b316f (patch) | |
tree | 38aaa12a1e8490683f623959b0887a6fecec27c0 /host | |
parent | bf77d1f6e38e1cb561520408ecff8f633f5cefc7 (diff) | |
download | uhd-75537e896bbd0aeb8d988b6ad33b5ab2d35b316f.tar.gz uhd-75537e896bbd0aeb8d988b6ad33b5ab2d35b316f.tar.bz2 uhd-75537e896bbd0aeb8d988b6ad33b5ab2d35b316f.zip |
uhd: benchmark app, overruns are ok to get
Diffstat (limited to 'host')
-rw-r--r-- | host/examples/benchmark_rx_rate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/examples/benchmark_rx_rate.cpp b/host/examples/benchmark_rx_rate.cpp index ba4dd34d0..7a7e9c3e0 100644 --- a/host/examples/benchmark_rx_rate.cpp +++ b/host/examples/benchmark_rx_rate.cpp @@ -57,7 +57,7 @@ static inline void test_device( std::cerr << "Unexpected timeout on recv, exit test..." << std::endl; return; } - if (num_rx_samps == 0){ + if (num_rx_samps == 0 and md.error_code != uhd::rx_metadata_t::ERROR_CODE_OVERRUN){ std::cerr << "Unexpected error on recv, continuing..." << std::endl; } if (not md.has_time_spec){ |