diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-05-27 11:12:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-05-27 11:12:30 +0100 |
| commit | f24ecc55366073d1c267806914e293602f90e3ce (patch) | |
| tree | 65843283f9be1d29413adb8a4ebb59d7f10f4dc2 /test/test.cc | |
| parent | 0a20f4b0ee59f06732648f981fe4d3e387b5705a (diff) | |
Use BOOST_REQUIRE to stop a hail of errors.
Diffstat (limited to 'test/test.cc')
| -rw-r--r-- | test/test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.cc b/test/test.cc index e636b7b52..37002dce6 100644 --- a/test/test.cc +++ b/test/test.cc @@ -143,7 +143,7 @@ check_audio_file (boost::filesystem::path ref, boost::filesystem::path check) BOOST_CHECK_EQUAL (r, this_time); for (sf_count_t i = 0; i < this_time; ++i) { - BOOST_CHECK (fabs (ref_buffer[i] - check_buffer[i]) <= 65536); + BOOST_REQUIRE (fabs (ref_buffer[i] - check_buffer[i]) <= 65536); } N -= this_time; |
