From a6d7cb2bd25a179a88aff10a48c905ed0064365d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 20 May 2024 16:00:43 +0200 Subject: [PATCH] Cleanup another test. --- test/client_server_test.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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(); } -- 2.30.2