diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-05-27 11:44:21 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-05-27 11:44:21 +0200 |
| commit | 3e866abeee4de737a04719ff8ab6c6bf46bb4d74 (patch) | |
| tree | 4d2b55f42cd6192588e8f0f17952b9c56392ea00 /test | |
| parent | 63840023707d73ef80b4e86c52b9c9279eb2e9ac (diff) | |
Sort notes when checking verifications.
So that the lists in the tests don't have to be in the right order.
Diffstat (limited to 'test')
| -rw-r--r-- | test/verify_test.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/verify_test.cc b/test/verify_test.cc index 42da7005..417b4563 100644 --- a/test/verify_test.cc +++ b/test/verify_test.cc @@ -211,6 +211,8 @@ check_verify_result (vector<path> dir, vector<dcp::VerificationNote> test_notes) { auto notes = dcp::verify ({dir}, &stage, &progress, xsd_test); BOOST_REQUIRE_EQUAL (notes.size(), test_notes.size()); + std::sort (notes.begin(), notes.end()); + std::sort (test_notes.begin(), test_notes.end()); for (auto i = 0U; i < notes.size(); ++i) { BOOST_REQUIRE_EQUAL (notes[i], test_notes[i]); } |
