You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2017/05/01 23:06:44 UTC

[17/54] [abbrv] geode git commit: GEODE-2857: add getProcess to ProcessWrapper for tests

GEODE-2857: add getProcess to ProcessWrapper for tests


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

Branch: refs/heads/feature/GEODE-2632-10
Commit: c2e7d1fbcb59312631080491d5d217acb8d12203
Parents: 73db6e3
Author: Kirk Lund <kl...@apache.org>
Authored: Mon May 1 11:24:48 2017 -0700
Committer: Kirk Lund <kl...@apache.org>
Committed: Mon May 1 11:27:22 2017 -0700

----------------------------------------------------------------------
 .../test/java/org/apache/geode/test/process/ProcessWrapper.java  | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/c2e7d1fb/geode-core/src/test/java/org/apache/geode/test/process/ProcessWrapper.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/org/apache/geode/test/process/ProcessWrapper.java b/geode-core/src/test/java/org/apache/geode/test/process/ProcessWrapper.java
index e1384a0..04ef18d 100644
--- a/geode-core/src/test/java/org/apache/geode/test/process/ProcessWrapper.java
+++ b/geode-core/src/test/java/org/apache/geode/test/process/ProcessWrapper.java
@@ -429,6 +429,10 @@ public class ProcessWrapper {
     return sb.toString();
   }
 
+  public Process getProcess() {
+    return this.process;
+  }
+
   public static class Builder {
     private String[] jvmArguments = null;
     private Class<?> mainClass;