I get an error message: unknown location(0): fatal error in "suite_1_test_1": child has exited; pid: 5817; uid: 0; exit value: 255
Inside, suite_1_test_1I run a program Awith execvp()(after fork()), which may end with an error code that is not 0. This error code indicates what happened to the program A.
The problem is that if I get this fatal error, I cannot process the value exit(), but BOOST TESTwill exit immediately.
Is there any way to disable it?
thank
hudac source
share