summaryrefslogtreecommitdiff
path: root/test/ssa_subtitle_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-02-02 16:36:31 +0100
committerCarl Hetherington <cth@carlh.net>2021-02-02 16:36:31 +0100
commit369821c41e62d4cce506cd4206f9db0d91b4f643 (patch)
tree2c990929b56ef47d99495a8aa22a23f626420885 /test/ssa_subtitle_test.cc
parentb539d468acc3ca73cc58a4434002e511a4995f7d (diff)
Reduce the disk space needed when running tests.v2.15.124
Diffstat (limited to 'test/ssa_subtitle_test.cc')
-rw-r--r--test/ssa_subtitle_test.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/ssa_subtitle_test.cc b/test/ssa_subtitle_test.cc
index 0756deed9..c7e4c39a6 100644
--- a/test/ssa_subtitle_test.cc
+++ b/test/ssa_subtitle_test.cc
@@ -41,10 +41,11 @@ using std::shared_ptr;
/** Make a DCP with subs from a .ssa file */
BOOST_AUTO_TEST_CASE (ssa_subtitle_test1)
{
- shared_ptr<Film> film = new_test_film ("ssa_subtitle_test1");
+ Cleanup cl;
+
+ shared_ptr<Film> film = new_test_film2 ("ssa_subtitle_test1", &cl);
film->set_container (Ratio::from_id ("185"));
- film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
film->set_name ("frobozz");
film->set_interop (true);
shared_ptr<StringTextFileContent> content (new StringTextFileContent(TestPaths::private_data() / "DKH_UT_EN20160601def.ssa"));
@@ -61,4 +62,6 @@ BOOST_AUTO_TEST_CASE (ssa_subtitle_test1)
list<string> ignore;
ignore.push_back ("SubtitleID");
check_xml (subtitle_file(film), TestPaths::private_data() / "DKH_UT_EN20160601def.xml", ignore);
+
+ cl.run ();
}