X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Frecover_test.cc;h=0a73b0c23270cf2281ec4cfb928ca613edbd47bf;hb=4f89278cc4e2281d9c3dc3f8d9901b307b5bbe4f;hp=4222426c3ce9341d6e92bf58e363bedf3705b68c;hpb=736597f0fc1b085911ecb5a4595368e7dc9a9bd5;p=dcpomatic.git diff --git a/test/recover_test.cc b/test/recover_test.cc index 4222426c3..0a73b0c23 100644 --- a/test/recover_test.cc +++ b/test/recover_test.cc @@ -55,12 +55,12 @@ BOOST_AUTO_TEST_CASE (recover_test_2d) film->set_container (Ratio::from_id ("185")); film->set_name ("recover_test"); - shared_ptr content (new FFmpegContent (film, "test/data/count300bd24.m2ts")); + shared_ptr content (new FFmpegContent("test/data/count300bd24.m2ts")); film->examine_and_add_content (content); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); film->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); boost::filesystem::path const video = "build/test/recover_test_2d/video/185_2K_84d36460538435d5d511ee533c8528df_24_100000000_P_S_0_1200000.mxf"; boost::filesystem::copy_file ( @@ -71,7 +71,7 @@ BOOST_AUTO_TEST_CASE (recover_test_2d) boost::filesystem::resize_file (video, 2 * 1024 * 1024); film->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); shared_ptr A (new dcp::MonoPictureAsset ("build/test/recover_test_2d/original.mxf")); shared_ptr B (new dcp::MonoPictureAsset (video)); @@ -89,13 +89,13 @@ BOOST_AUTO_TEST_CASE (recover_test_3d) film->set_name ("recover_test"); film->set_three_d (true); - shared_ptr content (new ImageContent (film, "test/data/3d_test")); + shared_ptr content (new ImageContent("test/data/3d_test")); content->video->set_frame_type (VIDEO_FRAME_TYPE_3D_LEFT_RIGHT); film->examine_and_add_content (content); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); film->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); boost::filesystem::path const video = "build/test/recover_test_3d/video/185_2K_961f053444e90c5ddbf978eb0ebfa772_24_100000000_P_S_3D_0_96000.mxf"; @@ -107,7 +107,7 @@ BOOST_AUTO_TEST_CASE (recover_test_3d) boost::filesystem::resize_file (video, 2 * 1024 * 1024); film->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); shared_ptr A (new dcp::StereoPictureAsset ("build/test/recover_test_3d/original.mxf")); shared_ptr B (new dcp::StereoPictureAsset (video)); @@ -126,12 +126,12 @@ BOOST_AUTO_TEST_CASE (recover_test_2d_encrypted) film->set_name ("recover_test"); film->set_encrypted (true); - shared_ptr content (new FFmpegContent (film, "test/data/count300bd24.m2ts")); + shared_ptr content (new FFmpegContent("test/data/count300bd24.m2ts")); film->examine_and_add_content (content); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); film->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); boost::filesystem::path const video = "build/test/recover_test_2d_encrypted/video/185_2K_84d36460538435d5d511ee533c8528df_24_100000000_E_S_0_1200000.mxf"; @@ -144,7 +144,7 @@ BOOST_AUTO_TEST_CASE (recover_test_2d_encrypted) boost::filesystem::resize_file (video, 2 * 1024 * 1024); film->make_dcp (); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); shared_ptr A (new dcp::MonoPictureAsset ("build/test/recover_test_2d_encrypted/original.mxf")); A->set_key (film->key ());