Run all tests with lots of encoding threads.
[dcpomatic.git] / test / j2k_bandwidth_test.cc
index 92f6f90d821e1413256f68f50a457f61fb47a37e..e66cf1829c3ead1659897c12fd5b5c57b06f84ad 100644 (file)
@@ -45,12 +45,12 @@ check (int target_bits_per_second)
        film->set_name (name);
        film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
        film->set_j2k_bandwidth (target_bits_per_second);
-       shared_ptr<ImageContent> content (new ImageContent(private_data / "prophet_frame.tiff"));
+       shared_ptr<ImageContent> content (new ImageContent(TestPaths::private_data / "prophet_frame.tiff"));
        film->examine_and_add_content (content);
-       wait_for_jobs ();
+       BOOST_REQUIRE (!wait_for_jobs());
        content->video->set_length (24 * duration);
        film->make_dcp ();
-       wait_for_jobs ();
+       BOOST_REQUIRE (!wait_for_jobs());
 
        boost::filesystem::directory_iterator i (boost::filesystem::path ("build") / "test" / name / "video");
        boost::filesystem::path test = *i++;