summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-06-26 22:17:43 +0100
committerCarl Hetherington <cth@carlh.net>2019-06-27 23:56:47 +0100
commit498ac2a3881882054acc808cdd36f835472dc5db (patch)
tree44f78cf0e78182cd976b199e348c07786a440139
parent4254b1b683776717cada1b6e43cc076b8fdbf7c1 (diff)
Debug for strange test failure in threed_test.
-rw-r--r--test/threed_test.cc5
1 files changed, 5 insertions, 0 deletions
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<Job> 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<Job> failed;
BOOST_FOREACH (shared_ptr<Job> i, jm->_jobs) {