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 2018/03/29 21:01:00 UTC

[geode] branch develop updated: GEODE-4970: Disable PartitionedRegionQueryDUnitTest

This is an automated email from the ASF dual-hosted git repository.

klund pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new a2cc503  GEODE-4970: Disable PartitionedRegionQueryDUnitTest
a2cc503 is described below

commit a2cc50346fe0bb3f03ddf7c9c8a2494118b4a131
Author: Kirk Lund <kl...@apache.org>
AuthorDate: Thu Mar 29 13:59:26 2018 -0700

    GEODE-4970: Disable PartitionedRegionQueryDUnitTest
    
    Mark PartitionedRegionQueryDUnitTest with @Ignore to prevent this test
    from hanging during precheckin. I'll merge a followup commit to reenable
    the test after I overhaul it.
---
 .../internal/cache/PartitionedRegionQueryDUnitTest.java | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/geode-core/src/test/java/org/apache/geode/internal/cache/PartitionedRegionQueryDUnitTest.java b/geode-core/src/test/java/org/apache/geode/internal/cache/PartitionedRegionQueryDUnitTest.java
index a31f769..07aa23a 100644
--- a/geode-core/src/test/java/org/apache/geode/internal/cache/PartitionedRegionQueryDUnitTest.java
+++ b/geode-core/src/test/java/org/apache/geode/internal/cache/PartitionedRegionQueryDUnitTest.java
@@ -14,7 +14,12 @@
  */
 package org.apache.geode.internal.cache;
 
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
 
 import java.io.DataInput;
 import java.io.DataOutput;
@@ -30,6 +35,7 @@ import java.util.concurrent.CancellationException;
 import java.util.concurrent.atomic.AtomicReference;
 import java.util.stream.IntStream;
 
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 
@@ -83,17 +89,10 @@ import org.apache.geode.test.dunit.VM;
 import org.apache.geode.test.dunit.cache.internal.JUnit4CacheTestCase;
 import org.apache.geode.test.junit.categories.DistributedTest;
 
-/**
- *
- */
 @Category(DistributedTest.class)
+@Ignore("GEODE-4970: CI failure: PartitionedRegionQueryDUnitTest.tesRangeIndexWithPdxObjects may hang")
 public class PartitionedRegionQueryDUnitTest extends JUnit4CacheTestCase {
 
-  public PartitionedRegionQueryDUnitTest() {
-    super();
-    // TODO Auto-generated constructor stub
-  }
-
   private static final AtomicReference<RebalanceResults> rebalanceResults =
       new AtomicReference<RebalanceResults>();
 

-- 
To stop receiving notification emails like this one, please contact
klund@apache.org.