diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-10-04 22:04:40 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-10-13 18:51:11 +0200 |
| commit | 5d937606cf96d163be98920fa5619114a28eec9d (patch) | |
| tree | 8e36025e51f2eaa9476de4c48810126a2f071127 /test/audio_analysis_test.cc | |
| parent | 7b302908e4b6186c44fd3a97aa4ba0716fb8674f (diff) | |
Fix use of DCPOMATIC_TEST_PRIVATE variable to specify where
test private data is.
Diffstat (limited to 'test/audio_analysis_test.cc')
| -rw-r--r-- | test/audio_analysis_test.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/audio_analysis_test.cc b/test/audio_analysis_test.cc index 4613f4aea..5cf8c0271 100644 --- a/test/audio_analysis_test.cc +++ b/test/audio_analysis_test.cc @@ -111,7 +111,7 @@ BOOST_AUTO_TEST_CASE (audio_analysis_test) film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR")); film->set_container (Ratio::from_id ("185")); film->set_name ("audio_analysis_test"); - boost::filesystem::path p = TestPaths::private_data / "betty_L.wav"; + boost::filesystem::path p = TestPaths::private_data() / "betty_L.wav"; shared_ptr<FFmpegContent> c (new FFmpegContent(p)); film->examine_and_add_content (c); @@ -128,7 +128,7 @@ BOOST_AUTO_TEST_CASE (audio_analysis_negative_delay_test) { shared_ptr<Film> film = new_test_film ("audio_analysis_negative_delay_test"); film->set_name ("audio_analysis_negative_delay_test"); - shared_ptr<FFmpegContent> c (new FFmpegContent(TestPaths::private_data / "boon_telly.mkv")); + shared_ptr<FFmpegContent> c (new FFmpegContent(TestPaths::private_data() / "boon_telly.mkv")); film->examine_and_add_content (c); BOOST_REQUIRE (!wait_for_jobs()); @@ -145,7 +145,7 @@ BOOST_AUTO_TEST_CASE (audio_analysis_test2) { shared_ptr<Film> film = new_test_film ("audio_analysis_test2"); film->set_name ("audio_analysis_test2"); - shared_ptr<FFmpegContent> c (new FFmpegContent(TestPaths::private_data / "3d_thx_broadway_2010_lossless.m2ts")); + shared_ptr<FFmpegContent> c (new FFmpegContent(TestPaths::private_data() / "3d_thx_broadway_2010_lossless.m2ts")); film->examine_and_add_content (c); BOOST_REQUIRE (!wait_for_jobs()); @@ -192,7 +192,7 @@ BOOST_AUTO_TEST_CASE (analyse_audio_test4) film->set_container (Ratio::from_id ("185")); film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR")); film->set_name ("frobozz"); - shared_ptr<Content> content = content_factory(TestPaths::private_data / "20 The Wedding Convoy Song.m4a").front(); + shared_ptr<Content> content = content_factory(TestPaths::private_data() / "20 The Wedding Convoy Song.m4a").front(); film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs()); @@ -207,7 +207,7 @@ BOOST_AUTO_TEST_CASE (analyse_audio_leqm_test) { shared_ptr<Film> film = new_test_film2 ("analyse_audio_leqm_test"); film->set_audio_channels (2); - shared_ptr<Content> content = content_factory(TestPaths::private_data / "betty_stereo_48k.wav").front(); + shared_ptr<Content> content = content_factory(TestPaths::private_data() / "betty_stereo_48k.wav").front(); film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs()); |
