25 Jan
2011
25 Jan
'11
10:44 p.m.
On Tue, 25 Jan 2011 21:49:38 +0100, Firouzeh Jalilian
I have a code that is run from the tests that I am running which does child.terminate(). That is considered a system error, therefore, I would have to set catch_system_errors="no" in order to ignore it. But the downside is I miss the rest of system errors I might be interested in.
How can I only ignore child.terminate() while running unittests?
If it's a problem with SIGCHLD rebuild your test with BOOST_TEST_IGNORE_SIGCHLD. HTH, Boris