From e8824cddfeccc66bfa6c8cb77eff706c75b66744 Mon Sep 17 00:00:00 2001
From: Luc Maisonobe <luc@orekit.org>
Date: Wed, 7 May 2014 10:46:49 +0200
Subject: [PATCH] Disable timing test by default.

---
 src/test/java/org/orekit/rugged/api/RuggedTest.java | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/test/java/org/orekit/rugged/api/RuggedTest.java b/src/test/java/org/orekit/rugged/api/RuggedTest.java
index 166e18c4..1965f19f 100644
--- a/src/test/java/org/orekit/rugged/api/RuggedTest.java
+++ b/src/test/java/org/orekit/rugged/api/RuggedTest.java
@@ -35,6 +35,7 @@ import org.apache.commons.math3.stat.descriptive.SummaryStatistics;
 import org.apache.commons.math3.util.FastMath;
 import org.apache.commons.math3.util.Pair;
 import org.junit.Assert;
+import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.rules.TemporaryFolder;
@@ -180,8 +181,11 @@ public class RuggedTest {
 
     }
 
+    // the following test is disabled by default
+    // it is only used to check timings, and also create a large (366M) temporary file
     @Test
-    public void testMayonVolcano()
+    @Ignore
+    public void testMayonVolcanoTiming()
         throws RuggedException, OrekitException, URISyntaxException {
 
         long t0 = System.currentTimeMillis();
-- 
GitLab