[logback-dev] svn commit: r1869 - in logback/trunk: logback-classic/src/test/java/ch/qos/logback/classic logback-core/src/test/java/ch/qos/logback/core/rolling logback-core/src/test/java/ch/qos/logback/core/testUtil
noreply.ceki at qos.ch
noreply.ceki at qos.ch
Fri Oct 24 00:46:41 CEST 2008
Author: ceki
Date: Fri Oct 24 00:46:40 2008
New Revision: 1869
Added:
logback/trunk/logback-core/src/test/java/ch/qos/logback/core/testUtil/
logback/trunk/logback-core/src/test/java/ch/qos/logback/core/testUtil/Env.java
Modified:
logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/LoggerPerfTest.java
logback/trunk/logback-core/src/test/java/ch/qos/logback/core/rolling/SizeBasedRollingTest.java
Log:
- Verified that the problem is JIT related on Linux. (Turning of the JIT causes
the tests to pass). Disabling the failing testDurationOfEnabledLog test
on Linux.
Modified: logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/LoggerPerfTest.java
==============================================================================
--- logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/LoggerPerfTest.java (original)
+++ logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/LoggerPerfTest.java Fri Oct 24 00:46:40 2008
@@ -19,6 +19,7 @@
import ch.qos.logback.classic.turbo.NOPTurboFilter;
import ch.qos.logback.core.UnsynchronizedAppenderBase;
import ch.qos.logback.core.appender.NOPAppender;
+import ch.qos.logback.core.testUtil.Env;
public class LoggerPerfTest {
@@ -80,10 +81,13 @@
@Test
public void testDurationOfEnabledLog() {
+ if(Env.isLinux()) {
+ // the JIT on Linux behaves very differently
+ return;
+ }
computeDurationOfEnabledLog(SHORTENED_RUN_LENGTH);
double avgDuration = computeDurationOfEnabledLog(SHORTENED_RUN_LENGTH);
long referencePerf = 500;
- System.out.println("avgDuration="+avgDuration);
BogoPerf.assertDuration(avgDuration, referencePerf, REFERENCE_BIPS);
}
Modified: logback/trunk/logback-core/src/test/java/ch/qos/logback/core/rolling/SizeBasedRollingTest.java
==============================================================================
--- logback/trunk/logback-core/src/test/java/ch/qos/logback/core/rolling/SizeBasedRollingTest.java (original)
+++ logback/trunk/logback-core/src/test/java/ch/qos/logback/core/rolling/SizeBasedRollingTest.java Fri Oct 24 00:46:40 2008
@@ -16,7 +16,8 @@
package ch.qos.logback.core.rolling;
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
import java.io.File;
@@ -24,11 +25,11 @@
import org.junit.Before;
import org.junit.Test;
-
import ch.qos.logback.core.Context;
import ch.qos.logback.core.ContextBase;
import ch.qos.logback.core.Layout;
import ch.qos.logback.core.layout.DummyLayout;
+import ch.qos.logback.core.testUtil.Env;
import ch.qos.logback.core.util.Compare;
import ch.qos.logback.core.util.Constants;
@@ -156,7 +157,7 @@
// The File.length() method is not accurate under Windows
- if (!isWindows()) {
+ if (!Env.isWindows()) {
assertTrue(Compare.compare(Constants.OUTPUT_DIR_PREFIX
+ "sizeBased-test2.log", Constants.TEST_DIR_PREFIX
@@ -224,7 +225,7 @@
assertTrue(new File(Constants.OUTPUT_DIR_PREFIX + "sbr-test3.1.gz")
.exists());
- if (!isWindows()) {
+ if (!Env.isWindows()) {
assertTrue(Compare.compare(
Constants.OUTPUT_DIR_PREFIX+"sbr-test3.log",
@@ -240,7 +241,5 @@
// StatusPrinter.print(context.getStatusManager());
}
- boolean isWindows() {
- return System.getProperty("os.name").indexOf("Windows") != -1;
- }
+
}
Added: logback/trunk/logback-core/src/test/java/ch/qos/logback/core/testUtil/Env.java
==============================================================================
--- (empty file)
+++ logback/trunk/logback-core/src/test/java/ch/qos/logback/core/testUtil/Env.java Fri Oct 24 00:46:40 2008
@@ -0,0 +1,21 @@
+/**
+ * Logback: the generic, reliable, fast and flexible logging framework.
+ *
+ * Copyright (C) 2000-2008, QOS.ch
+ *
+ * This library is free software, you can redistribute it and/or modify it under
+ * the terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation.
+ */
+package ch.qos.logback.core.testUtil;
+
+public class Env {
+
+ static public boolean isWindows() {
+ return System.getProperty("os.name").indexOf("Windows") != -1;
+ }
+
+ static public boolean isLinux() {
+ return System.getProperty("os.name").indexOf("Linux") != -1;
+ }
+}
More information about the logback-dev
mailing list