Extract part of the content change job to Content.
[dcpomatic.git] / test / job_test.cc
index d93b4a082743ec10a22a8b71b8680df77ec67325..7fb240843b884a9ebfa324cb464485cc5db3994d 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 /** @file  test/job_test.cc
  *  @brief Test Job and JobManager.
  *  @ingroup selfcontained
  */
 
-#include <boost/test/unit_test.hpp>
+
+#include "lib/cross.h"
 #include "lib/job.h"
 #include "lib/job_manager.h"
-#include "lib/cross.h"
+#include <boost/test/unit_test.hpp>
 
+
+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> film;
 
        /* Single job */
-       shared_ptr<TestJob> a (new TestJob (film));
+       auto a = make_shared<TestJob>(film);
 
        JobManager::instance()->add (a);
        dcpomatic_sleep_seconds (1);