disable test to avoid compiler failures
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Mon, 05 Oct 2009 16:18:24 +0200
changeset 5367 d0b9a6e08e47
parent 5366 48ffc97256a6
child 5368 09b539910969
disable test to avoid compiler failures
src/simulator/time.cc
--- a/src/simulator/time.cc	Sun Oct 04 22:56:53 2009 -0700
+++ b/src/simulator/time.cc	Mon Oct 05 16:18:24 2009 +0200
@@ -559,6 +559,9 @@
   TimeStepPrecision::Set (TimeStepPrecision::NS);
 }
 
+#if 0
+// disable this test because it triggers crazy 
+// compiler behavior (ICE+unbounded memory usage)
 class ConversionTestCase : public TestCase
 {
 public:
@@ -678,6 +681,7 @@
 
   return false;
 }
+#endif
 
 static class TimeTestSuite : public TestSuite
 {
@@ -689,7 +693,7 @@
     AddTestCase(new OperationsTimeTestCase());
     AddTestCase(new TimeStepTestCase());
     AddTestCase(new GlobalPrecisionTestCase());
-    AddTestCase(new ConversionTestCase());
+    //AddTestCase(new ConversionTestCase());
   }
 } g_timeTestSuite;