diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-27 10:57:50 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-27 10:57:50 +0200 |
| commit | 94695fc3214917ad7310af36270ce1e0b88cdfa3 (patch) | |
| tree | 83e0ce10b0b000de03e6dbe6c9f14ae1cd931714 | |
| parent | a386c56bac6b76a3db43dbb8ea2dca9538860788 (diff) | |
Reduce disk usage of interrupt_encoder_test.
| -rw-r--r-- | test/writer_test.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/writer_test.cc b/test/writer_test.cc index cb97cf78a..9a6541f58 100644 --- a/test/writer_test.cc +++ b/test/writer_test.cc @@ -53,14 +53,16 @@ BOOST_AUTO_TEST_CASE (test_write_odd_amount_of_silence) BOOST_AUTO_TEST_CASE (interrupt_writer) { - auto film = new_test_film2 ("test_interrupt_writer"); + Cleanup cl; + + auto film = new_test_film2 ("test_interrupt_writer", {}, &cl); auto content = content_factory("test/data/check_image0.png").front(); film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs()); /* Add some dummy content to the film so that it has a reel of the right length */ - auto constexpr frames = 24 * 60 * 60; + auto constexpr frames = 24 * 60; content->video->set_length (frames); /* Make a random J2K image */ @@ -95,5 +97,6 @@ BOOST_AUTO_TEST_CASE (interrupt_writer) thread.interrupt (); dcpomatic_sleep_seconds (1); + cl.run (); } |
