X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=test%2Ftest.cc;h=c7a9e95bfd6f8d6a78eda143c4020f4d4bf458ce;hp=a6867487e8287a7d1aed304436640062dfaadd4d;hb=a8a0dfd1b21de6c0facf965ab119833ff6f790bf;hpb=74417f75e11fd5b0bc152917e7661bf962957c60 diff --git a/test/test.cc b/test/test.cc index a6867487e..c7a9e95bf 100644 --- a/test/test.cc +++ b/test/test.cc @@ -1,19 +1,20 @@ /* Copyright (C) 2012-2015 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ @@ -28,7 +29,7 @@ #include "lib/job_manager.h" #include "lib/job.h" #include "lib/cross.h" -#include "lib/server_finder.h" +#include "lib/encode_server_finder.h" #include "lib/image.h" #include "lib/ratio.h" #include "lib/log_entry.h" @@ -80,7 +81,7 @@ struct TestConfig Config::instance()->set_default_j2k_bandwidth (100000000); Config::instance()->set_log_types (LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING | LogEntry::TYPE_ERROR); - ServerFinder::instance()->disable (); + EncodeServerFinder::instance()->disable (); signal_manager = new TestSignalManager (); } @@ -151,6 +152,7 @@ check_audio_file (boost::filesystem::path ref, boost::filesystem::path check) BOOST_REQUIRE_MESSAGE ( abs (ref_buffer[i] - check_buffer[i]) <= 65536, ref << " differs from " << check << " at " << (ref_info.frames - N + i) << " of " << ref_info.frames + << "(" << ref_buffer[i] << " vs " << check_buffer[i] << ")" ); } @@ -294,7 +296,7 @@ wait_for_jobs () { JobManager* jm = JobManager::instance (); while (jm->work_to_do ()) { - signal_manager->ui_idle (); + while (signal_manager->ui_idle ()) {} dcpomatic_sleep (1); } @@ -316,7 +318,7 @@ wait_for_jobs () } } - signal_manager->ui_idle (); + while (signal_manager->ui_idle ()) {} if (jm->errors ()) { JobManager::drop ();