This is an automated email from the ASF dual-hosted git repository. mattsicker pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit cfab5dbaf8d77967f7d09250e44ee0d1cb75b07d Author: Matt Sicker <[email protected]> AuthorDate: Fri May 27 18:03:41 2022 -0500 LOG4J2-3522 - Disable RollingAppenderCountTest Signed-off-by: Matt Sicker <[email protected]> --- .../logging/log4j/core/appender/rolling/RollingAppenderCountTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/appender/rolling/RollingAppenderCountTest.java b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/appender/rolling/RollingAppenderCountTest.java index b58acd30a5..71dbdca079 100644 --- a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/appender/rolling/RollingAppenderCountTest.java +++ b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/appender/rolling/RollingAppenderCountTest.java @@ -22,6 +22,7 @@ import org.apache.logging.log4j.core.test.junit.LoggerContextSource; import org.apache.logging.log4j.plugins.Named; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; @@ -39,6 +40,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals; * Validate rolling with a file pattern that contains leading zeros for the increment. */ @Tag("sleepy") +@Disabled("https://issues.apache.org/jira/browse/LOG4J2-3522") public class RollingAppenderCountTest { private static final String SOURCE = "src/test/resources/__files";
