diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-05-20 16:00:43 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-05-20 16:00:43 +0200 |
| commit | a6d7cb2bd25a179a88aff10a48c905ed0064365d (patch) | |
| tree | 8f72902c4247366595192a6fe4d27eca505d8921 /test/client_server_test.cc | |
| parent | 21291a099ca7fe403eb828439cf3d02c427ec9d6 (diff) | |
Cleanup another test.
Diffstat (limited to 'test/client_server_test.cc')
| -rw-r--r-- | test/client_server_test.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/client_server_test.cc b/test/client_server_test.cc index 64a77415a..8acad2306 100644 --- a/test/client_server_test.cc +++ b/test/client_server_test.cc @@ -318,8 +318,10 @@ BOOST_AUTO_TEST_CASE (client_server_test_j2k) BOOST_AUTO_TEST_CASE(real_encode_with_server) { + Cleanup cl; + auto content = content_factory(TestPaths::private_data() / "dolby_aurora.vob"); - auto film = new_test_film2("real_encode_with_server", content); + auto film = new_test_film2("real_encode_with_server", content, &cl); EncodeServerFinder::instance(); @@ -333,5 +335,7 @@ BOOST_AUTO_TEST_CASE(real_encode_with_server) BOOST_CHECK(server.frames_encoded() > 0); EncodeServerFinder::drop(); + + cl.run(); } |
