diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-11-24 00:38:58 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-11-24 21:02:35 +0100 |
| commit | e5bab168f16cc5b2b7b0435a0e90732b0850bb68 (patch) | |
| tree | 4bb456acad389d400fe833ed7cf1c7882580865f /test/ssa_subtitle_test.cc | |
| parent | 050a47f3f49355f5a167e3e318e4952029d4c780 (diff) | |
Allow a slightly worrying amount of error so that the Windows testswin2
that rely on font metrics still pass.
Diffstat (limited to 'test/ssa_subtitle_test.cc')
| -rw-r--r-- | test/ssa_subtitle_test.cc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/test/ssa_subtitle_test.cc b/test/ssa_subtitle_test.cc index 5c2e61b7e..3a1430696 100644 --- a/test/ssa_subtitle_test.cc +++ b/test/ssa_subtitle_test.cc @@ -32,6 +32,7 @@ #include "lib/ratio.h" #include "lib/text_content.h" #include "test.h" +#include <dcp/interop_subtitle_asset.h> #include <boost/test/unit_test.hpp> #include <boost/algorithm/string.hpp> @@ -61,8 +62,16 @@ BOOST_AUTO_TEST_CASE (ssa_subtitle_test1) make_and_verify_dcp (film, { dcp::VerificationNote::Code::INVALID_STANDARD }); - /* Find the subtitle file and check it */ - check_xml (subtitle_file(film), TestPaths::private_data() / "DKH_UT_EN20160601def.xml", {"SubtitleID"}); + auto ref = make_shared<dcp::InteropSubtitleAsset>(TestPaths::private_data() / "DKH_UT_EN20160601def.xml"); + auto check = make_shared<dcp::InteropSubtitleAsset>(subtitle_file(film)); + + dcp::EqualityOptions options; + options.max_subtitle_vertical_position_error = 0.1; + BOOST_CHECK(ref->equals(check, options, [](dcp::NoteType t, string n) { + if (t == dcp::NoteType::ERROR) { + std::cerr << n << "\n"; + } + })); cl.run (); } |
