summaryrefslogtreecommitdiff
path: root/test/audio_delay_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/audio_delay_test.cc')
-rw-r--r--test/audio_delay_test.cc4
1 files changed, 3 insertions, 1 deletions
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<string> (delay_in_ms);
shared_ptr<Film> 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;
}
}