Ignore JUL logging tests that only fail on Bamboo

pull/1780/head
Andy Wilkinson 10 years ago
parent af2a867d14
commit 15a3a21417

@ -19,6 +19,7 @@ package org.springframework.boot.logging.log4j;
import org.apache.commons.logging.impl.Log4JLogger;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.springframework.boot.logging.LogLevel;
@ -90,6 +91,7 @@ public class Log4JLoggingSystemTests {
}
@Test
@Ignore("Fails on Bamboo")
public void loggingThatUsesJulIsCaptured() {
this.loggingSystem.beforeInitialize();
this.loggingSystem.initialize();

@ -20,6 +20,7 @@ import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.springframework.boot.logging.LogLevel;
@ -91,6 +92,7 @@ public class Log4J2LoggingSystemTests {
}
@Test
@Ignore("Fails on Bamboo")
public void loggingThatUsesJulIsCaptured() {
this.loggingSystem.beforeInitialize();
this.loggingSystem.initialize();

Loading…
Cancel
Save