diff options
| -rw-r--r-- | test/verify_test.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/verify_test.cc b/test/verify_test.cc index 026c2726..ba6d6b22 100644 --- a/test/verify_test.cc +++ b/test/verify_test.cc @@ -103,6 +103,15 @@ private: std::string _content; }; +static +void +dump_notes (list<dcp::VerificationNote> const & notes) +{ + BOOST_FOREACH (dcp::VerificationNote i, notes) { + std::cout << dcp::note_to_string(i) << "\n"; + } +} + /* Check DCP as-is (should be OK) */ BOOST_AUTO_TEST_CASE (verify_test1) { @@ -133,6 +142,8 @@ BOOST_AUTO_TEST_CASE (verify_test1) ++st; BOOST_REQUIRE (st == stages.end()); + dump_notes (notes); + BOOST_CHECK_EQUAL (notes.size(), 0); } |
