You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/08/09 23:13:57 UTC

tinkerpop git commit: tests needing to be OPT_OUT from RemoteGraph now that we dynamically determine the language to use. We should sytematically go through all OPT_OUTs and solve.

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1278 ed984aa12 -> 891981c4b


tests needing to be OPT_OUT from RemoteGraph now that we dynamically determine the language to use. We should sytematically go through all OPT_OUTs and solve.


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

Branch: refs/heads/TINKERPOP-1278
Commit: 891981c4b9fb822f3bc8c0ae42bc7ece56c1697d
Parents: ed984aa
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Tue Aug 9 17:13:54 2016 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Tue Aug 9 17:13:54 2016 -0600

----------------------------------------------------------------------
 .../apache/tinkerpop/gremlin/process/remote/RemoteGraph.java | 8 ++++++++
 1 file changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/891981c4/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/remote/RemoteGraph.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/remote/RemoteGraph.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/remote/RemoteGraph.java
index 942c744..6c2522a 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/remote/RemoteGraph.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/remote/RemoteGraph.java
@@ -70,6 +70,14 @@ import java.util.Iterator;
         method = "g_withSideEffectXa_g_VX2XX_VX1X_out_whereXneqXaXX",
         reason = "Issues with Longs")
 @Graph.OptOut(
+        test = "org.apache.tinkerpop.gremlin.process.traversal.step.map.VertexTest",
+        method = "g_VXlistXv1_v2_v3XX_name",
+        reason = "Issues with ids")
+@Graph.OptOut(
+        test = "org.apache.tinkerpop.gremlin.process.traversal.step.filter.HasTest",
+        method = "g_VXv1X_hasXage_gt_30X",
+        reason = "Issues with ids")
+@Graph.OptOut(
         test = "org.apache.tinkerpop.gremlin.process.traversal.step.map.PeerPressureTest",
         method = "*",
         reason = "hmmmm")