summaryrefslogtreecommitdiff
path: root/test/hints_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-07-15 03:36:59 +0200
committerCarl Hetherington <cth@carlh.net>2025-07-15 18:03:57 +0200
commit21415bdb69a99c4fc36cf4b5e5160a171bb1cad4 (patch)
tree46265de6587585d292ac4c97267327af0c359c1c /test/hints_test.cc
parent6207d271effad4e691a5155ccdad083e03b010bc (diff)
Change Film::examine_and_add_content to take a vector of content.
Diffstat (limited to 'test/hints_test.cc')
-rw-r--r--test/hints_test.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/hints_test.cc b/test/hints_test.cc
index 53c126fde..eaa034066 100644
--- a/test/hints_test.cc
+++ b/test/hints_test.cc
@@ -76,7 +76,7 @@ check (TextType type, string name, optional<string> expected_hint = optional<str
auto content = content_factory("test/data/" + name + ".srt")[0];
content->text.front()->set_type (type);
content->text.front()->set_language (dcp::LanguageTag("en-US"));
- film->examine_and_add_content (content);
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
auto hints = get_hints (film);
@@ -196,7 +196,7 @@ BOOST_AUTO_TEST_CASE (hint_subtitle_mxf_too_big)
auto content = content_factory(fmt::format("test/data/{}{}.xml", name, i))[0];
content->text[0]->set_type(TextType::OPEN_SUBTITLE);
content->text[0]->set_language(dcp::LanguageTag("en-US"));
- film->examine_and_add_content(content);
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
auto const font = content->text[0]->get_font(fmt::format("font_{}", i));
BOOST_REQUIRE(font);
@@ -234,7 +234,7 @@ BOOST_AUTO_TEST_CASE (hint_closed_caption_xml_too_big)
auto content = content_factory("build/test/" + name + ".srt")[0];
content->text.front()->set_type (TextType::CLOSED_CAPTION);
content->text.front()->set_language (dcp::LanguageTag("en-US"));
- film->examine_and_add_content (content);
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
auto hints = get_hints (film);
@@ -250,8 +250,8 @@ BOOST_AUTO_TEST_CASE (hint_closed_caption_xml_too_big)
BOOST_AUTO_TEST_CASE (hints_destroyed_while_running)
{
auto film = new_test_film("hints_destroyed_while_running");
- auto content = content_factory(TestPaths::private_data() / "boon_telly.mkv")[0];
- film->examine_and_add_content (content);
+ auto content = content_factory(TestPaths::private_data() / "boon_telly.mkv");
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
auto hints = make_shared<Hints>(film);