summaryrefslogtreecommitdiff
path: root/test/video_mxf_content_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-03-15 00:41:20 +0100
committerCarl Hetherington <cth@carlh.net>2024-05-11 21:00:37 +0200
commitd2c665cba983c625933817e0bf05e298f80f0119 (patch)
treec631beb6a9f56b76df71285559a042809d47851e /test/video_mxf_content_test.cc
parent59195cd423442f1c2b6c1d97162c1f5ecfe1f609 (diff)
Stop using video directory and hard-linking (#2756).
Instead store details of a previously-created asset in the film's metadata and then look there for potential video files to re-use.
Diffstat (limited to 'test/video_mxf_content_test.cc')
-rw-r--r--test/video_mxf_content_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/video_mxf_content_test.cc b/test/video_mxf_content_test.cc
index 3497772a2..77891b0c2 100644
--- a/test/video_mxf_content_test.cc
+++ b/test/video_mxf_content_test.cc
@@ -63,7 +63,7 @@ BOOST_AUTO_TEST_CASE (video_mxf_content_test)
});
auto ref = make_shared<dcp::MonoJ2KPictureAsset>(ref_mxf);
- auto comp_mxf = find_file("build/test/video_mxf_content_test/video", ".mxf");
+ auto comp_mxf = find_file(film->file(film->dcp_name()), "j2c_");
auto comp = make_shared<dcp::MonoJ2KPictureAsset>(comp_mxf);
dcp::EqualityOptions op;
BOOST_CHECK (ref->equals (comp, op, note));