[Jboss-cvs] JBossAS SVN: r56396 - branches/Branch_4_0/testsuite/src/main/org/jboss/test/compatibility/test

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Aug 29 05:55:57 EDT 2006


Author: dimitris at jboss.org
Date: 2006-08-29 05:55:54 -0400 (Tue, 29 Aug 2006)
New Revision: 56396

Modified:
   branches/Branch_4_0/testsuite/src/main/org/jboss/test/compatibility/test/SerialVersionUIDUnitTestCase.java
Log:
JBAS-3488 - Ignore incompatible classes from the sun-javamail upgrade

Modified: branches/Branch_4_0/testsuite/src/main/org/jboss/test/compatibility/test/SerialVersionUIDUnitTestCase.java
===================================================================
--- branches/Branch_4_0/testsuite/src/main/org/jboss/test/compatibility/test/SerialVersionUIDUnitTestCase.java	2006-08-29 09:19:18 UTC (rev 56395)
+++ branches/Branch_4_0/testsuite/src/main/org/jboss/test/compatibility/test/SerialVersionUIDUnitTestCase.java	2006-08-29 09:55:54 UTC (rev 56396)
@@ -1,24 +1,24 @@
 /*
-* JBoss, Home of Professional Open Source
-* Copyright 2005, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This 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; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-*/
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This 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; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.test.compatibility.test;
 
 import java.io.FileInputStream;
@@ -35,7 +35,6 @@
 import org.jboss.tools.SerialVersionUID;
 import org.jboss.tools.ClassVersionInfo;
 
-
 /** Tests of serial version uid compatibility across jboss versions. The
  * testsuite/etc/serialVersionUID/xxx.ser is created using the
  * org.jboss.tools.SerialVersionUID utility.
@@ -92,7 +91,10 @@
          */
          "org.jboss.ejb.plugins.cmp.ejbql.TokenMgrError",
          "org.jboss.mq.selectors.TokenMgrError",
-         "org.jboss.security.auth.login.TokenMgrError"
+         "org.jboss.security.auth.login.TokenMgrError",
+         // Ignore incompatible classes from the sun-javamail upgrade, JBAS-3488
+         "com.sun.mail.imap.protocol.IMAPAddress",
+         "javax.mail.MessagingException"         
       };
 
       System.out.println("+++ test402Compatibility");
@@ -151,7 +153,10 @@
          */
          "org.jboss.ejb.plugins.cmp.ejbql.TokenMgrError",
          "org.jboss.mq.selectors.TokenMgrError",
-         "org.jboss.security.auth.login.TokenMgrError"
+         "org.jboss.security.auth.login.TokenMgrError",
+         // Ignore incompatible classes from the sun-javamail upgrade, JBAS-3488
+         "com.sun.mail.imap.protocol.IMAPAddress",
+         "javax.mail.MessagingException"
       };
 
       System.out.println("+++ test401Compatibility");




More information about the jboss-cvs-commits mailing list