Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 37592200C4D for ; Wed, 5 Apr 2017 16:51:42 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 360CA160B94; Wed, 5 Apr 2017 14:51:42 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 7B6BC160B91 for ; Wed, 5 Apr 2017 16:51:41 +0200 (CEST) Received: (qmail 1144 invoked by uid 500); 5 Apr 2017 14:51:40 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 1135 invoked by uid 99); 5 Apr 2017 14:51:40 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Apr 2017 14:51:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EA99ADFBA9; Wed, 5 Apr 2017 14:51:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jinmeiliao@apache.org To: commits@geode.apache.org Message-Id: <35c7697ab7854329bc7fdea431cce744@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: geode git commit: GEM-1351: Move a test to the open side and fix the other tests - spotless Date: Wed, 5 Apr 2017 14:51:39 +0000 (UTC) archived-at: Wed, 05 Apr 2017 14:51:42 -0000 Repository: geode Updated Branches: refs/heads/develop 02ccc5ca0 -> edd018b97 GEM-1351: Move a test to the open side and fix the other tests - spotless * move ImportClusterConfigDistributedTest to open side * remove @Ignore from other two tests. * rework GfshShellConnectionRule to not create gfsh shell at class initialization time. Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/edd018b9 Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/edd018b9 Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/edd018b9 Branch: refs/heads/develop Commit: edd018b971d93565da502a8523df22a8f0b669ca Parents: 02ccc5c Author: Jinmei Liao Authored: Wed Apr 5 07:51:31 2017 -0700 Committer: Jinmei Liao Committed: Wed Apr 5 07:51:31 2017 -0700 ---------------------------------------------------------------------- .../org/apache/geode/test/dunit/rules/GfshShellConnectionRule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/edd018b9/geode-core/src/test/java/org/apache/geode/test/dunit/rules/GfshShellConnectionRule.java ---------------------------------------------------------------------- diff --git a/geode-core/src/test/java/org/apache/geode/test/dunit/rules/GfshShellConnectionRule.java b/geode-core/src/test/java/org/apache/geode/test/dunit/rules/GfshShellConnectionRule.java index 1c72bba..381b751 100644 --- a/geode-core/src/test/java/org/apache/geode/test/dunit/rules/GfshShellConnectionRule.java +++ b/geode-core/src/test/java/org/apache/geode/test/dunit/rules/GfshShellConnectionRule.java @@ -121,7 +121,7 @@ public class GfshShellConnectionRule extends DescribedExternalResource { public void connect(int port, PortType type, String... options) throws Exception { CliUtil.isGfshVM = true; - if(gfsh == null){ + if (gfsh == null) { this.gfsh = new HeadlessGfsh(getClass().getName(), 30, temporaryFolder.newFolder("gfsh_files").getAbsolutePath()); }