You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ck...@apache.org on 2019/05/23 15:13:05 UTC

[logging-log4j2] branch master updated: LOG4J2-2613: Ignore RollingAppenderSizeWithTimeTest.testAppender

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

ckozak pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/master by this push:
     new 7a3282d  LOG4J2-2613: Ignore RollingAppenderSizeWithTimeTest.testAppender
7a3282d is described below

commit 7a3282d097f37f5f06d7a9e1a3406e776132586b
Author: Carter Kozak <ck...@apache.org>
AuthorDate: Thu May 23 11:10:51 2019 -0400

    LOG4J2-2613: Ignore RollingAppenderSizeWithTimeTest.testAppender
    
    Ignoring the test as a temporary measure to give other builds
    a chance to succeed.
    
    This test causes most travis builds to flake. Failures can be
    reproduced locally, though at a much lower rate.
---
 .../log4j/core/appender/rolling/RollingAppenderSizeWithTimeTest.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/rolling/RollingAppenderSizeWithTimeTest.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/rolling/RollingAppenderSizeWithTimeTest.java
index 2283aac..5b78aeb 100644
--- a/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/rolling/RollingAppenderSizeWithTimeTest.java
+++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/appender/rolling/RollingAppenderSizeWithTimeTest.java
@@ -28,6 +28,7 @@ import org.apache.commons.compress.utils.IOUtils;
 import org.apache.logging.log4j.Logger;
 import org.apache.logging.log4j.junit.LoggerContextRule;
 import org.junit.Before;
+import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.rules.RuleChain;
@@ -59,6 +60,7 @@ public class RollingAppenderSizeWithTimeTest {
     }
 
     @Test
+    @Ignore("LOG4J2-2613")
     public void testAppender() throws Exception {
         final List<String> messages = new ArrayList<>();
         for (int i = 0; i < 1000; ++i) {