diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-02-02 21:56:27 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-02-02 21:56:27 +0000 |
| commit | 1029bec7334fedbd8570cd8bfa5ddf954da8b3ec (patch) | |
| tree | bf1931328f5949eb78ed5cde5be6c7519e7688fc /test/srt_subtitle_test.cc | |
| parent | 308fb04d15cecb471c8c04db40d2979810efefe3 (diff) | |
A number of unit test fixes.
Diffstat (limited to 'test/srt_subtitle_test.cc')
| -rw-r--r-- | test/srt_subtitle_test.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/srt_subtitle_test.cc b/test/srt_subtitle_test.cc index b6df6e393..025972da8 100644 --- a/test/srt_subtitle_test.cc +++ b/test/srt_subtitle_test.cc @@ -46,6 +46,7 @@ BOOST_AUTO_TEST_CASE (srt_subtitle_test) film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR")); film->set_name ("frobozz"); film->set_audio_channels (6); + film->set_interop (false); shared_ptr<TextSubtitleContent> content (new TextSubtitleContent (film, "test/data/subrip2.srt")); film->examine_and_add_content (content); wait_for_jobs (); @@ -67,6 +68,7 @@ BOOST_AUTO_TEST_CASE (srt_subtitle_test2) film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR")); film->set_name ("frobozz"); film->set_audio_channels (6); + film->set_interop (false); shared_ptr<TextSubtitleContent> content (new TextSubtitleContent (film, "test/data/subrip2.srt")); film->examine_and_add_content (content); wait_for_jobs (); @@ -118,6 +120,7 @@ BOOST_AUTO_TEST_CASE (srt_subtitle_test3) film->set_name ("frobozz"); film->set_interop (true); film->set_audio_channels (6); + film->set_interop (false); shared_ptr<TextSubtitleContent> content (new TextSubtitleContent (film, private_data / "Ankoemmling_short.srt")); film->examine_and_add_content (content); wait_for_jobs (); @@ -138,6 +141,7 @@ BOOST_AUTO_TEST_CASE (srt_subtitle_test4) film->set_container (Ratio::from_id ("185")); film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR")); film->set_name ("frobozz"); + film->set_interop (false); shared_ptr<TextSubtitleContent> content (new TextSubtitleContent (film, "test/data/subrip2.srt")); content->subtitle->set_use (true); content->subtitle->set_burn (false); |
