diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-10-10 07:52:11 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-10-10 11:25:18 +0200 |
| commit | 81137ff8b9ea1ac55f973df11d55bcae56c1ee02 (patch) | |
| tree | b5888f533f90e0b573317844ebc89bd461b49db4 /test/hints_test.cc | |
| parent | 836b620432087bcd3ffa203015d9a34c4df43d31 (diff) | |
Fix tests after changes to config parameters.
Diffstat (limited to 'test/hints_test.cc')
| -rw-r--r-- | test/hints_test.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/hints_test.cc b/test/hints_test.cc index eaa034066..55bd9d77f 100644 --- a/test/hints_test.cc +++ b/test/hints_test.cc @@ -77,6 +77,7 @@ check (TextType type, string name, optional<string> expected_hint = optional<str content->text.front()->set_type (type); content->text.front()->set_language (dcp::LanguageTag("en-US")); film->examine_and_add_content({content}); + film->set_audio_channels(8); BOOST_REQUIRE (!wait_for_jobs()); auto hints = get_hints (film); @@ -184,6 +185,7 @@ BOOST_AUTO_TEST_CASE (hint_subtitle_mxf_too_big) string const name = "hint_subtitle_mxf_too_big"; auto film = new_test_film(name); + film->set_audio_channels(8); for (int i = 0; i < 4; ++i) { dcp::File fake_font("build/test/hint_subtitle_mxf_too_big.ttf", "w"); @@ -219,6 +221,7 @@ BOOST_AUTO_TEST_CASE (hint_closed_caption_xml_too_big) string const name = "hint_closed_caption_xml_too_big"; auto film = new_test_film(name); + film->set_audio_channels(8); dcp::File ccap(fmt::format("build/test/{}.srt", name), "w"); BOOST_REQUIRE (ccap); @@ -266,6 +269,7 @@ BOOST_AUTO_TEST_CASE (hints_audio_with_no_language) { auto content = content_factory("test/data/sine_440.wav")[0]; auto film = new_test_film("hints_audio_with_no_language", { content }); + film->set_audio_channels(8); content->audio->set_gain (-6); auto hints = get_hints (film); @@ -285,6 +289,7 @@ BOOST_AUTO_TEST_CASE (hints_certificate_validity) Config::instance()->set_signer_chain(make_shared<dcp::CertificateChain>(openssl_path(), 40 * 365)); auto film = new_test_film("hints_certificate_validity"); + film->set_audio_channels(8); auto hints = get_hints (film); BOOST_REQUIRE_EQUAL (hints.size(), 1U); BOOST_CHECK_EQUAL ( @@ -301,6 +306,7 @@ BOOST_AUTO_TEST_CASE(hints_mpeg2) { auto film = new_test_film("hints_certificate_validity"); film->set_video_encoding(VideoEncoding::MPEG2); + film->set_audio_channels(8); auto hints = get_hints(film); BOOST_REQUIRE_EQUAL(hints.size(), 1U); BOOST_CHECK_EQUAL( |
