This is the mail archive of the mauve-patches@sourceware.org mailing list for the Mauve project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: Test Fix


Another small patch that fixes a test's expectations, in gnu/testlet/java/util/logging/XMLFormatter/formatMessage.java

2007-07-24 Joshua Sumali <jsumali@redhat.com>

   * gnu/testlet/java/util/logging/XMLFormatter/formatMessage.java:
   (EXPECTED_PREFIX): Fixed expected string.

#P mauve
Index: gnu/testlet/java/util/logging/XMLFormatter/formatMessage.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/java/util/logging/XMLFormatter/formatMessage.java,v
retrieving revision 1.1
diff -u -r1.1 formatMessage.java
--- gnu/testlet/java/util/logging/XMLFormatter/formatMessage.java	26 Feb 2004 19:41:42 -0000	1.1
+++ gnu/testlet/java/util/logging/XMLFormatter/formatMessage.java	24 Jul 2007 19:07:29 -0000
@@ -28,6 +28,7 @@
 import java.util.logging.LogRecord;
 import java.util.logging.XMLFormatter;
 
+import java.util.TimeZone;
 
 /**
  * @author <a href="mailto:brawer@dandelis.ch";>Sascha Brawer</a>
@@ -58,6 +59,11 @@
 
     // Check #2.
     rec = new LogRecord(Level.INFO, "foobar");
+    
+    //Need to force the default time zone to UTC or else
+    //the comparison uses system time zone and makes the tests
+    //break.
+    TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
     rec.setMillis(1234567);
     rec.setSequenceNumber(42);
     rec.setThreadID(21);
@@ -124,9 +130,11 @@
   }
 
 
+  //1234567 milliseconds is only 20 minutes and 
+  //34 seconds (past the Epoch, UTC time).
   private static final String EXPECTED_PREFIX =
      "<record>\n"
-    + "  <date>1970-01-01T01:20:34</date>\n"
+    + "  <date>1970-01-01T00:20:34</date>\n"
     + "  <millis>1234567</millis>\n"
     + "  <sequence>42</sequence>\n"
     + "  <level>INFO</level>\n";

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]