X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Ftest.cc;h=292b4e1d9436b60365c6ad5e604a512f52cc108e;hb=b43fa17ece8aacb7cbe85d62f055a50a6858ce0d;hp=6c811221d9a3de55d7ef03017cf602f9d0e7739c;hpb=3725e19af64ea3e341cbffda7340bb157bb920e1;p=dcpomatic.git diff --git a/test/test.cc b/test/test.cc index 6c811221d..292b4e1d9 100644 --- a/test/test.cc +++ b/test/test.cc @@ -176,12 +176,15 @@ new_test_film (string name) } shared_ptr -new_test_film2 (string name) +new_test_film2 (string name, Cleanup* cleanup) { auto p = test_film_dir (name); if (boost::filesystem::exists (p)) { boost::filesystem::remove_all (p); } + if (cleanup) { + cleanup->add (p); + } auto film = make_shared(p); film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TST")); @@ -811,3 +814,19 @@ operator<< (std::ostream&s, VideoFrameType f) return s; } + +void +Cleanup::add (boost::filesystem::path path) +{ + _paths.push_back (path); +} + + +void +Cleanup::run () +{ + boost::system::error_code ec; + for (auto i: _paths) { + boost::filesystem::remove_all (i, ec); + } +}