You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/02/19 01:49:14 UTC

incubator-tinkerpop git commit: Uncomment out the profile test that was causing trouble around IgnoreEngine.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 9a3f65dd1 -> 44c5c46cd


Uncomment out the profile test that was causing trouble around IgnoreEngine.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/44c5c46c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/44c5c46c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/44c5c46c

Branch: refs/heads/master
Commit: 44c5c46cd5e6803a39053ef428b4179b87491515
Parents: 9a3f65d
Author: Stephen Mallette <sp...@apache.org>
Authored: Wed Feb 18 19:48:54 2015 -0500
Committer: Stephen Mallette <sp...@apache.org>
Committed: Wed Feb 18 19:48:54 2015 -0500

----------------------------------------------------------------------
 .../traversal/step/sideEffect/GroovyProfileTest.groovy    | 10 ++++++++++
 .../graph/traversal/step/sideEffect/ProfileTest.java      |  3 +--
 2 files changed, 11 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/44c5c46c/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/graph/traversal/step/sideEffect/GroovyProfileTest.groovy
----------------------------------------------------------------------
diff --git a/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/graph/traversal/step/sideEffect/GroovyProfileTest.groovy b/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/graph/traversal/step/sideEffect/GroovyProfileTest.groovy
index b7ff9b0..c6ca1bb 100644
--- a/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/graph/traversal/step/sideEffect/GroovyProfileTest.groovy
+++ b/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/graph/traversal/step/sideEffect/GroovyProfileTest.groovy
@@ -47,6 +47,11 @@ public abstract class GroovyProfileTest {
         }
 
         @Override
+        @org.junit.Ignore
+        void testProfileTimes() {
+        }
+
+        @Override
         Traversal<Vertex, StandardTraversalMetrics> get_g_V_sleep_sleep_profile() {
             return null
         }
@@ -67,6 +72,11 @@ public abstract class GroovyProfileTest {
         }
 
         @Override
+        @org.junit.Ignore
+        void testProfileTimes() {
+        }
+
+        @Override
         Traversal<Vertex, StandardTraversalMetrics> get_g_V_sleep_sleep_profile() {
             return null
         }

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/44c5c46c/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/graph/traversal/step/sideEffect/ProfileTest.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/graph/traversal/step/sideEffect/ProfileTest.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/graph/traversal/step/sideEffect/ProfileTest.java
index e178d17..00a9cd6 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/graph/traversal/step/sideEffect/ProfileTest.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/graph/traversal/step/sideEffect/ProfileTest.java
@@ -122,9 +122,9 @@ public abstract class ProfileTest extends AbstractGremlinProcessTest {
         assertEquals(100, totalPercentDuration, 0.000001);
     }
 
-    /*
     @Test
     @LoadGraphWith(MODERN)
+    @IgnoreEngine(TraversalEngine.Type.COMPUTER)
     public void testProfileTimes() {
         final Traversal<Vertex, StandardTraversalMetrics> traversal = get_g_V_sleep_sleep_profile();
         printTraversalForm(traversal);
@@ -157,7 +157,6 @@ public abstract class ProfileTest extends AbstractGremlinProcessTest {
         }
         assertEquals(100, totalPercentDuration, 0.000001);
     }
-    */
 
     @Test
     @LoadGraphWith(MODERN)