X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Faudio_delay_test.cc;h=63f363114894a4ee119aaf271b8fb36453bcee46;hb=0a93237cb5e4642d3b698ff9b7d0cfae5401478c;hp=68e14ff3ca353f470d9f09f8c14112f6713b34a4;hpb=4616b19fb5241a54c9d57f7a91bb975f41aed14b;p=dcpomatic.git diff --git a/test/audio_delay_test.cc b/test/audio_delay_test.cc index 68e14ff3c..63f363114 100644 --- a/test/audio_delay_test.cc +++ b/test/audio_delay_test.cc @@ -43,6 +43,8 @@ using boost::shared_ptr; static void test_audio_delay (int delay_in_ms) { + BOOST_TEST_MESSAGE ("Testing delay of " << delay_in_ms); + string const film_name = "audio_delay_test_" + lexical_cast (delay_in_ms); shared_ptr film = new_test_film (film_name); film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR")); @@ -87,7 +89,7 @@ void test_audio_delay (int delay_in_ms) delayed = 0; } - BOOST_CHECK_EQUAL (sample, delayed); + BOOST_REQUIRE_EQUAL (sample, delayed); ++n; } }