From: Carl Hetherington Date: Wed, 26 Jun 2019 21:17:43 +0000 (+0100) Subject: Debug for strange test failure in threed_test. X-Git-Tag: v2.15.9~4 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=498ac2a3881882054acc808cdd36f835472dc5db Debug for strange test failure in threed_test. --- diff --git a/test/threed_test.cc b/test/threed_test.cc index 559cc4876..2ff09c127 100644 --- a/test/threed_test.cc +++ b/test/threed_test.cc @@ -193,6 +193,11 @@ BOOST_AUTO_TEST_CASE (threed_test7) while (signal_manager->ui_idle ()) {} + std::cout << "Here's the jobs:\n"; + BOOST_FOREACH (shared_ptr i, jm->_jobs) { + std::cout << i->name() << " " << i->status() << " " << i->is_new() << " " << i->running() << " " << i->finished() << " " << i->finished_ok() << " " << i->finished_in_error() << "\n"; + } + BOOST_REQUIRE (jm->errors()); shared_ptr failed; BOOST_FOREACH (shared_ptr i, jm->_jobs) {