summaryrefslogtreecommitdiff
path: root/test/map_cli_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-01-11 16:24:38 +0100
committerCarl Hetherington <cth@carlh.net>2024-01-15 12:44:42 +0100
commita4a7d9ef34f2f083b0ba9e32e933ea5c64d2352d (patch)
tree0a3c3bd68cd57554e89d278c2603fc4d16619c59 /test/map_cli_test.cc
parent7ea73fdcfa96aac86546b80b6e6c2edbdd524199 (diff)
Inspect most DCPs made during tests with dcp_inspect (#76).
Diffstat (limited to 'test/map_cli_test.cc')
-rw-r--r--test/map_cli_test.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/map_cli_test.cc b/test/map_cli_test.cc
index 5a774b6a4..ca75ed520 100644
--- a/test/map_cli_test.cc
+++ b/test/map_cli_test.cc
@@ -254,12 +254,11 @@ test_map_ov_vf_copy(vector<string> extra_args = {})
make_and_verify_dcp(ov_film);
auto const ov_dir = ov_film->dir(ov_film->dcp_name());
-
auto vf_ov = make_shared<DCPContent>(ov_dir);
auto vf_sound = content_factory("test/data/sine_440.wav").front();
auto vf_film = new_test_film2(name + "_vf", { vf_ov, vf_sound });
vf_ov->set_reference_video(true);
- make_and_verify_dcp(vf_film, {dcp::VerificationNote::Code::EXTERNAL_ASSET});
+ make_and_verify_dcp(vf_film, {dcp::VerificationNote::Code::EXTERNAL_ASSET}, false);
auto const vf_dir = vf_film->dir(vf_film->dcp_name());
@@ -315,7 +314,7 @@ BOOST_AUTO_TEST_CASE(map_ov_vf_copy_multiple_reference)
vf_ov2->set_position(vf_film, vf_ov1->end(vf_film));
vf_ov1->set_reference_video(true);
vf_ov2->set_reference_video(true);
- make_and_verify_dcp(vf_film, {dcp::VerificationNote::Code::EXTERNAL_ASSET});
+ make_and_verify_dcp(vf_film, {dcp::VerificationNote::Code::EXTERNAL_ASSET}, false);
auto const vf_dir = vf_film->dir(vf_film->dcp_name());