You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by mh...@apache.org on 2020/03/13 00:14:15 UTC

[geode] branch develop updated: GEODE-4194: Re-ignoring a failing test that was previously ignored (#4795)

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

mhanson 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 eb03056  GEODE-4194: Re-ignoring a failing test that was previously ignored (#4795)
eb03056 is described below

commit eb030561ccc2825908fa53e365692544a339f16e
Author: mhansonp <ha...@vmware.com>
AuthorDate: Thu Mar 12 17:13:52 2020 -0700

    GEODE-4194: Re-ignoring a failing test that was previously ignored (#4795)
    
    Co-authored-by: Mark Hanson <mh...@pivotal.io>
---
 .../geode/internal/cache/DestroyRegionDuringGIIDistributedTest.java     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/DestroyRegionDuringGIIDistributedTest.java b/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/DestroyRegionDuringGIIDistributedTest.java
index d8eb95d..1118505 100644
--- a/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/DestroyRegionDuringGIIDistributedTest.java
+++ b/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/DestroyRegionDuringGIIDistributedTest.java
@@ -38,6 +38,7 @@ import junitparams.Parameters;
 import junitparams.naming.TestCaseName;
 import org.junit.After;
 import org.junit.Before;
+import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.runner.RunWith;
@@ -302,6 +303,7 @@ public class DestroyRegionDuringGIIDistributedTest implements Serializable {
     }
   }
 
+  @Ignore("TODO: test is disabled for 51542")
   @Test
   @Parameters(method = "getDefinitionParameters")
   @TestCaseName("{method}_{0}_{1}")