diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-02-20 22:59:58 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-02-20 23:00:36 +0100 |
| commit | 201eed51d026a6e6b837d40f4e3b639847fe7bee (patch) | |
| tree | 829bf205eeb43a4af038c582bdef44e9926ea02a /test | |
| parent | 5ae223a91e66e53afffa1c48ebc01812166889de (diff) | |
Accept multiple DCP verification results when making a report.
Diffstat (limited to 'test')
| -rw-r--r-- | test/verify_report_test.cc | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/test/verify_report_test.cc b/test/verify_report_test.cc index 6b288891..ddc7eacf 100644 --- a/test/verify_report_test.cc +++ b/test/verify_report_test.cc @@ -29,14 +29,16 @@ BOOST_AUTO_TEST_CASE(verify_report_basically_ok) { dcp::HTMLFormatter formatter("build/test/verify_report_basically_ok.html"); dcp::verify_report( - dcp::verify( - { private_test / "TONEPLATES-SMPTE-PLAINTEXT_TST_F_XX-XX_ITL-TD_51-XX_2K_WOE_20111001_WOE_OV" }, - {}, - [](std::string, boost::optional<boost::filesystem::path>) {}, - [](float) {}, - {}, - xsd_test - ), + { + dcp::verify( + { private_test / "TONEPLATES-SMPTE-PLAINTEXT_TST_F_XX-XX_ITL-TD_51-XX_2K_WOE_20111001_WOE_OV" }, + {}, + [](std::string, boost::optional<boost::filesystem::path>) {}, + [](float) {}, + {}, + xsd_test + ) + }, formatter ); } |
