You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bs...@apache.org on 2016/12/21 16:57:59 UTC

geode git commit: GEODE-2239 CI failure: org.apache.geode.pdx.JSONFormatterJUnitTest.testJSONFormatterAPIs

Repository: geode
Updated Branches:
  refs/heads/develop 65220a3f4 -> 2fb15ae7c


GEODE-2239 CI failure: org.apache.geode.pdx.JSONFormatterJUnitTest.testJSONFormatterAPIs

Marking test as Flaky


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

Branch: refs/heads/develop
Commit: 2fb15ae7caeb16c51adc2368d1e0753d7789547a
Parents: 65220a3
Author: Bruce Schuchardt <bs...@pivotal.io>
Authored: Wed Dec 21 08:56:48 2016 -0800
Committer: Bruce Schuchardt <bs...@pivotal.io>
Committed: Wed Dec 21 08:56:48 2016 -0800

----------------------------------------------------------------------
 .../test/java/org/apache/geode/pdx/JSONFormatterJUnitTest.java    | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/2fb15ae7/geode-core/src/test/java/org/apache/geode/pdx/JSONFormatterJUnitTest.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/org/apache/geode/pdx/JSONFormatterJUnitTest.java b/geode-core/src/test/java/org/apache/geode/pdx/JSONFormatterJUnitTest.java
index 704bca9..979da13 100755
--- a/geode-core/src/test/java/org/apache/geode/pdx/JSONFormatterJUnitTest.java
+++ b/geode-core/src/test/java/org/apache/geode/pdx/JSONFormatterJUnitTest.java
@@ -22,6 +22,7 @@ import java.text.SimpleDateFormat;
 import com.fasterxml.jackson.core.JsonProcessingException;
 import com.fasterxml.jackson.databind.DeserializationFeature;
 import com.fasterxml.jackson.databind.ObjectMapper;
+import org.apache.geode.test.junit.categories.FlakyTest;
 import org.apache.geode.test.junit.categories.SerializationTest;
 import org.json.JSONException;
 import org.json.JSONObject;
@@ -202,6 +203,8 @@ public class JSONFormatterJUnitTest {
   }
 
   @Test
+  @Category(value = FlakyTest.class) // GEODE-2239 this test uses fixed port 40405 & fails if it
+                                     // isn't available
   public void testJSONFormatterAPIs() {
     ValidatePdxInstanceToJsonConversion();
     verifyJsonToPdxInstanceConversion();