From c23ef899eab6a33a71ba745eb17fbb4ecc67f127 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Mon, 5 Oct 2009 16:18:24 +0200 Subject: [PATCH] disable test to avoid compiler failures --- src/simulator/time.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/simulator/time.cc b/src/simulator/time.cc index a986e2dfb..1501fb7be 100644 --- a/src/simulator/time.cc +++ b/src/simulator/time.cc @@ -559,6 +559,9 @@ GlobalPrecisionTestCase::DoTeardown (void) 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 @@ ConversionTestCase::DoRun (void) return false; } +#endif static class TimeTestSuite : public TestSuite { @@ -689,7 +693,7 @@ public: AddTestCase(new OperationsTimeTestCase()); AddTestCase(new TimeStepTestCase()); AddTestCase(new GlobalPrecisionTestCase()); - AddTestCase(new ConversionTestCase()); + //AddTestCase(new ConversionTestCase()); } } g_timeTestSuite;