diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-05-20 16:58:55 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-05-20 16:58:55 +0200 |
| commit | 8366fcb9b393563a44255a445b5784e468016077 (patch) | |
| tree | b28da4c56c851a0dac8faaf50e8c17ec44f133a5 /test/content_test.cc | |
| parent | df6cc62c6acb30d42581e07c2eefdcea0e25110d (diff) | |
Clean up another big test.
Diffstat (limited to 'test/content_test.cc')
| -rw-r--r-- | test/content_test.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/content_test.cc b/test/content_test.cc index 45e2638aa..d5a13885d 100644 --- a/test/content_test.cc +++ b/test/content_test.cc @@ -167,7 +167,11 @@ BOOST_AUTO_TEST_CASE (content_test7) /** WAVs with markers (I think) can end up making audio packets with no channels and no frames (#2617) */ BOOST_AUTO_TEST_CASE(wav_with_markers_zero_channels_test) { + Cleanup cl; + auto content = content_factory(TestPaths::private_data() / "wav_with_markers.wav"); - auto film = new_test_film2("wav_with_markers_zero_channels_test", content); + auto film = new_test_film2("wav_with_markers_zero_channels_test", content, &cl); make_and_verify_dcp(film, { dcp::VerificationNote::Code::MISSING_CPL_METADATA }); + + cl.run(); } |
