Open
Description
Is there any way how not to handle signals on Linux? It looks that Unittest++ always try to suppress many signals, that appear during running the test. It is not always what we want, especially for SIGSEGV.
I have one teoretical problem - that if some data in the memory are corrupted, next test will be running as undefined behavior.
My practical problem is deadlock. This was caused by crash in test. My test started with a lock a mutex to singleton, after that it crashed (access to null pointer). After that framework tried to fix the signal. Skipped all the destructor (including ~lock_guard) and next test tried to lock the same mutex again.