[MOAB-dev] r4599 - MOAB/trunk/test
kraftche at cae.wisc.edu
kraftche at cae.wisc.edu
Tue Mar 15 19:32:00 CDT 2011
Author: kraftche
Date: 2011-03-15 19:31:59 -0500 (Tue, 15 Mar 2011)
New Revision: 4599
Modified:
MOAB/trunk/test/TestUtil.hpp
Log:
work around mpich bug
Modified: MOAB/trunk/test/TestUtil.hpp
===================================================================
--- MOAB/trunk/test/TestUtil.hpp 2011-03-15 23:42:41 UTC (rev 4598)
+++ MOAB/trunk/test/TestUtil.hpp 2011-03-16 00:31:59 UTC (rev 4599)
@@ -166,15 +166,18 @@
#ifdef SIGFPE
result += sethandler( SIGFPE );
#endif
+#ifdef SIGSEGV
+ result += sethandler( SIGSEGV );
+#endif
+/* Catching these causes problems with mpich2 1.3.1p1 and a test
+ should never die due to an uncaught sigusr anyway.
#ifdef SIGUSR1
result += sethandler( SIGUSR1 );
#endif
-#ifdef SIGSEGV
- result += sethandler( SIGSEGV );
-#endif
#ifdef SIGUSR2
result += sethandler( SIGUSR2 );
#endif
+*/
#ifdef SIGPIPE
result += sethandler( SIGPIPE );
#endif
More information about the moab-dev
mailing list