X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fjob_test.cc;h=7fb240843b884a9ebfa324cb464485cc5db3994d;hb=1a9554c281720d0bf54295ab16f593ccc0ef3b4e;hp=d93b4a082743ec10a22a8b71b8680df77ec67325;hpb=f0a2a52ddd1118236d4ce5640339c24bae88aa12;p=dcpomatic.git diff --git a/test/job_test.cc b/test/job_test.cc index d93b4a082..7fb240843 100644 --- a/test/job_test.cc +++ b/test/job_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,18 +18,23 @@ */ + /** @file test/job_test.cc * @brief Test Job and JobManager. * @ingroup selfcontained */ -#include + +#include "lib/cross.h" #include "lib/job.h" #include "lib/job_manager.h" -#include "lib/cross.h" +#include + +using std::make_shared; +using std::shared_ptr; using std::string; -using boost::shared_ptr; + class TestJob : public Job { @@ -40,6 +45,11 @@ public: } + ~TestJob () + { + stop_thread (); + } + void set_finished_ok () { set_state (FINISHED_OK); } @@ -66,12 +76,13 @@ public: } }; + BOOST_AUTO_TEST_CASE (job_manager_test) { shared_ptr film; /* Single job */ - shared_ptr a (new TestJob (film)); + auto a = make_shared(film); JobManager::instance()->add (a); dcpomatic_sleep_seconds (1);