]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Activate floating point exceptions.
authorageay <ageay>
Thu, 5 Nov 2009 09:26:06 +0000 (09:26 +0000)
committerageay <ageay>
Thu, 5 Nov 2009 09:26:06 +0000 (09:26 +0000)
src/INTERP_KERNELTest/BasicMainTest.hxx

index 8220e33a00b9910048fa003c6c592e3fe33d9579..161dd28366455f6050f63494ed88b2f39d9d827a 100644 (file)
 #include <iostream>
 #include <fstream>
 
+#ifndef WIN32
+#include <fpu_control.h>
+#endif
+
 // ============================================================================
 /*!
  *  Main program source for Unit Tests with cppunit package does not depend
 
 int main(int argc, char* argv[])
 {
+#ifndef WIN32
+  fpu_control_t cw = _FPU_DEFAULT & ~(_FPU_MASK_IM | _FPU_MASK_ZM | _FPU_MASK_OM);
+  _FPU_SETCW(cw);
+#endif
   // --- Create the event manager and test controller
   CPPUNIT_NS::TestResult controller;