X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=test%2Ftest.cc;h=3ccfd2c35ea84dac9d503b8edc1fe7a4fada9433;hp=acc3e4ca485a4343aae186f4e94a4b3d98698939;hb=422be0eece2bf6ee80db1d3c21553cd82efff789;hpb=17553e8613a83bbca51781e5c8d2308810e2aeeb diff --git a/test/test.cc b/test/test.cc index acc3e4ca4..3ccfd2c35 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,9 +29,10 @@ #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" #include #include #include @@ -77,8 +79,9 @@ struct TestConfig Config::instance()->set_default_dcp_content_type (static_cast (0)); Config::instance()->set_default_audio_delay (0); 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()->stop (); signal_manager = new TestSignalManager (); } @@ -149,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] << ")" ); } @@ -170,7 +174,7 @@ check_file (boost::filesystem::path ref, boost::filesystem::path check) uint8_t* ref_buffer = new uint8_t[buffer_size]; uint8_t* check_buffer = new uint8_t[buffer_size]; - SafeStringStream error; + locked_stringstream error; error << "File " << check.string() << " differs from reference " << ref.string(); while (N) { @@ -287,12 +291,12 @@ check_xml (boost::filesystem::path ref, boost::filesystem::path test, listwork_to_do ()) { - signal_manager->ui_idle (); + while (signal_manager->ui_idle ()) {} dcpomatic_sleep (1); } @@ -314,11 +318,14 @@ wait_for_jobs () } } - signal_manager->ui_idle (); + while (signal_manager->ui_idle ()) {} if (jm->errors ()) { JobManager::drop (); + return true; } + + return false; } void