diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-02-21 20:28:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-02-23 20:09:39 +0100 |
| commit | 41262015eb2bb1fc3da8585883420975de381a65 (patch) | |
| tree | f16a0bea110f57a820c7c45321775b3b7a9a4122 /test/srt_subtitle_test.cc | |
| parent | d756e14c0bb2c2264248b26d59c363b6bc33a7fc (diff) | |
Verify a whole bunch of DCPs made by unit tests.
Diffstat (limited to 'test/srt_subtitle_test.cc')
| -rw-r--r-- | test/srt_subtitle_test.cc | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/test/srt_subtitle_test.cc b/test/srt_subtitle_test.cc index 3fe9bc2d2..1d8fb89da 100644 --- a/test/srt_subtitle_test.cc +++ b/test/srt_subtitle_test.cc @@ -100,21 +100,17 @@ BOOST_AUTO_TEST_CASE (srt_subtitle_test3) { Cleanup cl; - shared_ptr<Film> film = new_test_film2 ("srt_subtitle_test3", &cl); + shared_ptr<StringTextFileContent> content (new StringTextFileContent(TestPaths::private_data() / "Ankoemmling_short.srt")); + shared_ptr<Film> film = new_test_film2 ("srt_subtitle_test3", { content }, &cl); - film->set_container (Ratio::from_id ("185")); film->set_name ("frobozz"); film->set_interop (true); film->set_audio_channels (6); - shared_ptr<StringTextFileContent> content (new StringTextFileContent(TestPaths::private_data() / "Ankoemmling_short.srt")); - film->examine_and_add_content (content); - BOOST_REQUIRE (!wait_for_jobs()); content->only_text()->set_use (true); content->only_text()->set_burn (false); - film->make_dcp (); - BOOST_REQUIRE (!wait_for_jobs()); + make_and_verify_dcp (film, {dcp::VerificationNote::Code::INVALID_STANDARD}); check_subtitle_file (film, TestPaths::private_data() / "Ankoemmling_short.xml"); |
