summaryrefslogtreecommitdiff
path: root/test/combine_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-02-12 19:38:53 +0100
committerCarl Hetherington <cth@carlh.net>2023-02-12 22:55:50 +0100
commit83c3a53c4b44b48823ecdece80bd6c246929ae0b (patch)
treedfc06f65273e74da82d0cb833a48473e9045a210 /test/combine_test.cc
parentb12947937e4f55065f5940dcde96667a5518383d (diff)
Add --no-asset-hash-check and --asset-hash-check-maximum-size (DoM #2444).v1.8.56
Diffstat (limited to 'test/combine_test.cc')
-rw-r--r--test/combine_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/combine_test.cc b/test/combine_test.cc
index 9fea304a..dd23b9ae 100644
--- a/test/combine_test.cc
+++ b/test/combine_test.cc
@@ -86,7 +86,7 @@ check_no_errors (boost::filesystem::path path)
{
vector<boost::filesystem::path> directories;
directories.push_back (path);
- auto notes = dcp::verify (directories, &stage, &progress, xsd_test);
+ auto notes = dcp::verify(directories, &stage, &progress, {}, xsd_test);
vector<dcp::VerificationNote> filtered_notes;
std::copy_if (notes.begin(), notes.end(), std::back_inserter(filtered_notes), [](dcp::VerificationNote const& i) {
return i.code() != dcp::VerificationNote::Code::INVALID_STANDARD && i.code() != dcp::VerificationNote::Code::INVALID_SUBTITLE_DURATION;
@@ -474,7 +474,7 @@ BOOST_AUTO_TEST_CASE(combine_multi_reel_subtitles)
check_combined({in}, out);
- auto notes = dcp::verify({out}, &stage, &progress, xsd_test);
+ auto notes = dcp::verify({out}, &stage, &progress, {}, xsd_test);
vector<dcp::VerificationNote> filtered_notes;
std::copy_if(notes.begin(), notes.end(), std::back_inserter(filtered_notes), [](dcp::VerificationNote const& i) {
return i.code() != dcp::VerificationNote::Code::INVALID_STANDARD && i.code() != dcp::VerificationNote::Code::MISMATCHED_PKL_ANNOTATION_TEXT_WITH_CPL;