summaryrefslogtreecommitdiff
path: root/test/reels_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-11-28 10:39:03 +0100
committerCarl Hetherington <cth@carlh.net>2021-11-28 21:13:15 +0100
commit94ab538738526948c5a52ed1222be1e484255541 (patch)
treef14be732d23dfac5ee41149eaee2db43b1710d32 /test/reels_test.cc
parentd41a59b6ef7a8c935f182d498ae4df0bdd66ba02 (diff)
Rearrange checking (and re-examining) content.
Most importantly, checking of content for changes before making a DCP is now done in the TranscodeJob (rather than being in a separate job). This makes things a little neater and also makes the batch converter less confusing when you add a job whose content has changed.
Diffstat (limited to 'test/reels_test.cc')
-rw-r--r--test/reels_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/reels_test.cc b/test/reels_test.cc
index 5bb119f46..db974d384 100644
--- a/test/reels_test.cc
+++ b/test/reels_test.cc
@@ -564,7 +564,7 @@ BOOST_AUTO_TEST_CASE (reels_should_not_be_short4)
BOOST_CHECK (film->reels().front() == dcpomatic::DCPTimePeriod(dcpomatic::DCPTime(), dcpomatic::DCPTime::from_frames(263, 24)));
film->write_metadata ();
- film->make_dcp ();
+ film->make_dcp (TranscodeJob::ChangedBehaviour::IGNORE);
BOOST_REQUIRE (!wait_for_jobs());
vector<boost::filesystem::path> dirs = { film->dir(film->dcp_name(false)) };