JBoss Portal SVN: r12496 - in modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms: hibernate/state and 1 other directories.
by portal-commits@lists.jboss.org
Author: sohil.shah(a)jboss.com
Date: 2009-01-14 06:47:46 -0500 (Wed, 14 Jan 2009)
New Revision: 12496
Modified:
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/CMSEntry.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/HibernateStore.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/RepositoryEntry.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/VersionEntry.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/JBossCachePersistenceManager.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/VersionBinVal.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/WSPBinVal.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/impl/jcr/JCRCMS.java
Log:
JBPORTAL-2258 - Create file in CMS not working for several databases
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/CMSEntry.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/CMSEntry.java 2009-01-14 11:11:10 UTC (rev 12495)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/CMSEntry.java 2009-01-14 11:47:46 UTC (rev 12496)
@@ -23,6 +23,8 @@
package org.jboss.portal.cms.hibernate;
import java.io.Serializable;
+import org.hibernate.Hibernate;
+import org.jboss.portal.common.io.IOTools;
/** @author <a href="mailto:roy@jboss.org">Roy Russo</a> */
public class CMSEntry implements Serializable
@@ -33,9 +35,11 @@
private Integer key;
private String path;
private String name;
- private java.sql.Blob data;
+ //private java.sql.Blob data;
private long lastmod;
private long length;
+
+ private byte[] blobData;
public CMSEntry()
{
@@ -45,10 +49,11 @@
{
this.key = null;
this.path = path;
- this.name = name;
- this.data = data;
+ this.name = name;
this.lastmod = lastmod;
this.length = length;
+
+ this.setData(data);
}
public Integer getKey()
@@ -81,16 +86,6 @@
this.name = name;
}
- public java.sql.Blob getData()
- {
- return data;
- }
-
- public void setData(java.sql.Blob data)
- {
- this.data = data;
- }
-
public long getLastmod()
{
return lastmod;
@@ -110,4 +105,31 @@
{
this.length = length;
}
+
+ public java.sql.Blob getData()
+ {
+ java.sql.Blob blob = null;
+
+ if(this.blobData != null)
+ {
+ blob = Hibernate.createBlob(this.blobData);
+ }
+
+ return blob;
+ }
+
+ public void setData(java.sql.Blob data)
+ {
+ try
+ {
+ if(data != null)
+ {
+ this.blobData = IOTools.getBytes(data.getBinaryStream());
+ }
+ }
+ catch(Exception e)
+ {
+ throw new RuntimeException(e);
+ }
+ }
}
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/HibernateStore.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/HibernateStore.java 2009-01-14 11:11:10 UTC (rev 12495)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/HibernateStore.java 2009-01-14 11:47:46 UTC (rev 12496)
@@ -955,7 +955,7 @@
versionEntry.setLength(length);
session.save(versionEntry);
- session.flush();
+ //session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.cmsClassName))
{
@@ -975,7 +975,7 @@
cmsEntry.setLength(length);
session.save(cmsEntry);
- session.flush();
+ //session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.repositoryClassName))
{
@@ -995,7 +995,7 @@
repoEntry.setLength(length);
session.save(repoEntry);
- session.flush();
+ //session.flush();
}
}
catch (Exception e)
@@ -1023,7 +1023,7 @@
VersionEntry versionEntry = new VersionEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
session.save(versionEntry);
- session.flush();
+ //session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.cmsClassName))
{
@@ -1031,7 +1031,7 @@
CMSEntry cmsEntry = new CMSEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
session.save(cmsEntry);
- session.flush();
+ //session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.repositoryClassName))
{
@@ -1039,7 +1039,7 @@
RepositoryEntry repoEntry = new RepositoryEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
session.save(repoEntry);
- session.flush();
+ //session.flush();
}
}
catch (Exception e)
@@ -1176,7 +1176,7 @@
versionEntry.setLength(length);
session.save(versionEntry);
- session.flush();
+ //session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.cmsClassName))
{
@@ -1196,7 +1196,7 @@
cmsEntry.setLength(length);
session.save(cmsEntry);
- session.flush();
+ //session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.repositoryClassName))
{
@@ -1217,7 +1217,7 @@
repoEntry.setLength(length);
session.save(repoEntry);
- session.flush();
+ //session.flush();
}
}
catch (Exception e)
@@ -1245,7 +1245,7 @@
VersionEntry versionEntry = new VersionEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
session.save(versionEntry);
- session.flush();
+ //session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.cmsClassName))
{
@@ -1253,7 +1253,7 @@
CMSEntry cmsEntry = new CMSEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
session.save(cmsEntry);
- session.flush();
+ //session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.repositoryClassName))
{
@@ -1261,7 +1261,7 @@
RepositoryEntry repoEntry = new RepositoryEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
session.save(repoEntry);
- session.flush();
+ //session.flush();
}
}
catch (Exception e)
@@ -1508,20 +1508,21 @@
VersionEntry versionEntry = new VersionEntry(parentDir, name, null, System.currentTimeMillis(), 0);
session.save(versionEntry);
- session.flush();
+ //session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.cmsClassName))
{
CMSEntry cmsEntry = new CMSEntry(parentDir, name, null, System.currentTimeMillis(), 0);
session.save(cmsEntry);
+ //session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.repositoryClassName))
{
RepositoryEntry repoEntry = new RepositoryEntry(parentDir, name, null, System.currentTimeMillis(), 0);
session.save(repoEntry);
- session.flush();
+ //session.flush();
}
}
catch (Exception e)
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/RepositoryEntry.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/RepositoryEntry.java 2009-01-14 11:11:10 UTC (rev 12495)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/RepositoryEntry.java 2009-01-14 11:47:46 UTC (rev 12496)
@@ -23,6 +23,8 @@
package org.jboss.portal.cms.hibernate;
import java.io.Serializable;
+import org.hibernate.Hibernate;
+import org.jboss.portal.common.io.IOTools;
/** @author <a href="mailto:roy@jboss.org">Roy Russo</a> */
public class RepositoryEntry implements Serializable
@@ -33,9 +35,11 @@
private Integer key;
private String path;
private String name;
- private java.sql.Blob data;
+ //private java.sql.Blob data;
private long lastmod;
private long length;
+
+ private byte[] blobData;
public RepositoryEntry()
{
@@ -46,9 +50,10 @@
this.key = null;
this.path = path;
this.name = name;
- this.data = data;
this.lastmod = lastmod;
this.length = length;
+
+ this.setData(data);
}
public Integer getKey()
@@ -81,16 +86,6 @@
this.name = name;
}
- public java.sql.Blob getData()
- {
- return data;
- }
-
- public void setData(java.sql.Blob data)
- {
- this.data = data;
- }
-
public long getLastmod()
{
return lastmod;
@@ -110,4 +105,31 @@
{
this.length = length;
}
+
+ public java.sql.Blob getData()
+ {
+ java.sql.Blob blob = null;
+
+ if(this.blobData != null)
+ {
+ blob = Hibernate.createBlob(this.blobData);
+ }
+
+ return blob;
+ }
+
+ public void setData(java.sql.Blob data)
+ {
+ try
+ {
+ if(data != null)
+ {
+ this.blobData = IOTools.getBytes(data.getBinaryStream());
+ }
+ }
+ catch(Exception e)
+ {
+ throw new RuntimeException(e);
+ }
+ }
}
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/VersionEntry.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/VersionEntry.java 2009-01-14 11:11:10 UTC (rev 12495)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/VersionEntry.java 2009-01-14 11:47:46 UTC (rev 12496)
@@ -23,6 +23,8 @@
package org.jboss.portal.cms.hibernate;
import java.io.Serializable;
+import org.hibernate.Hibernate;
+import org.jboss.portal.common.io.IOTools;
/** @author <a href="mailto:roy@jboss.org">Roy Russo</a> */
public class VersionEntry implements Serializable
@@ -33,9 +35,11 @@
private Integer key;
private String path;
private String name;
- private java.sql.Blob data;
+ //private java.sql.Blob data;
private long lastmod;
private long length;
+
+ private byte[] blobData;
public VersionEntry()
{
@@ -45,10 +49,11 @@
{
this.key = null;
this.path = path;
- this.name = name;
- this.data = data;
+ this.name = name;
this.lastmod = lastmod;
this.length = length;
+
+ this.setData(data);
}
public Integer getKey()
@@ -81,16 +86,6 @@
this.name = name;
}
- public java.sql.Blob getData()
- {
- return data;
- }
-
- public void setData(java.sql.Blob data)
- {
- this.data = data;
- }
-
public long getLastmod()
{
return lastmod;
@@ -110,4 +105,31 @@
{
this.length = length;
}
+
+ public java.sql.Blob getData()
+ {
+ java.sql.Blob blob = null;
+
+ if(this.blobData != null)
+ {
+ blob = Hibernate.createBlob(this.blobData);
+ }
+
+ return blob;
+ }
+
+ public void setData(java.sql.Blob data)
+ {
+ try
+ {
+ if(data != null)
+ {
+ this.blobData = IOTools.getBytes(data.getBinaryStream());
+ }
+ }
+ catch(Exception e)
+ {
+ throw new RuntimeException(e);
+ }
+ }
}
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/JBossCachePersistenceManager.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/JBossCachePersistenceManager.java 2009-01-14 11:11:10 UTC (rev 12495)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/JBossCachePersistenceManager.java 2009-01-14 11:47:46 UTC (rev 12496)
@@ -1527,7 +1527,7 @@
//versionNode.setData(IOTools.getBytes(in));
versionNode.setData(Hibernate.createBlob(in));
- session.flush();
+ //session.flush();
}
else if (schemaObjectPrefix
.equalsIgnoreCase(HibernateStoreConstants.wspPrefix))
@@ -1542,7 +1542,7 @@
//wspNode.setData(IOTools.getBytes(in));
wspNode.setData(Hibernate.createBlob(in));
- session.flush();
+ //session.flush();
}
}
catch (Exception e)
@@ -1571,7 +1571,7 @@
Hibernate.createBlob(in));
session.save(versionNode);
- session.flush();
+ //session.flush();
}
else if (schemaObjectPrefix
.equalsIgnoreCase(HibernateStoreConstants.wspPrefix))
@@ -1580,7 +1580,7 @@
WSPBinVal wspNode = new WSPBinVal(blobId, Hibernate.createBlob(in));
session.save(wspNode);
- session.flush();
+ //session.flush();
}
}
catch (Exception e)
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/VersionBinVal.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/VersionBinVal.java 2009-01-14 11:11:10 UTC (rev 12495)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/VersionBinVal.java 2009-01-14 11:47:46 UTC (rev 12496)
@@ -24,6 +24,9 @@
import java.io.Serializable;
+import org.hibernate.Hibernate;
+import org.jboss.portal.common.io.IOTools;
+
/** @author <a href="mailto:roy@jboss.org">Roy Russo</a> */
public class VersionBinVal implements Serializable
{
@@ -32,7 +35,9 @@
private Integer key;
private String id;
- private java.sql.Blob data;
+ //private java.sql.Blob data;
+
+ private byte[] blobData;
public VersionBinVal()
{
@@ -42,7 +47,8 @@
{
this.key = null;
this.id = id;
- this.data = data;
+
+ this.setData(data);
}
public Integer getKey()
@@ -67,11 +73,28 @@
public java.sql.Blob getData()
{
- return data;
+ java.sql.Blob blob = null;
+
+ if(this.blobData != null)
+ {
+ blob = Hibernate.createBlob(this.blobData);
+ }
+
+ return blob;
}
public void setData(java.sql.Blob data)
{
- this.data = data;
+ try
+ {
+ if(data != null)
+ {
+ this.blobData = IOTools.getBytes(data.getBinaryStream());
+ }
+ }
+ catch(Exception e)
+ {
+ throw new RuntimeException(e);
+ }
}
}
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/WSPBinVal.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/WSPBinVal.java 2009-01-14 11:11:10 UTC (rev 12495)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/WSPBinVal.java 2009-01-14 11:47:46 UTC (rev 12496)
@@ -24,6 +24,9 @@
import java.io.Serializable;
+import org.hibernate.Hibernate;
+import org.jboss.portal.common.io.IOTools;
+
/** @author <a href="mailto:roy@jboss.org">Roy Russo</a> */
public class WSPBinVal implements Serializable
{
@@ -32,7 +35,8 @@
private Integer key;
private String id;
- private java.sql.Blob data;
+ //private java.sql.Blob data;
+ private byte[] blobData;
public WSPBinVal()
{
@@ -42,7 +46,8 @@
{
this.key = null;
this.id = id;
- this.data = data;
+
+ this.setData(data);
}
public Integer getKey()
@@ -67,11 +72,28 @@
public java.sql.Blob getData()
{
- return data;
+ java.sql.Blob blob = null;
+
+ if(this.blobData != null)
+ {
+ blob = Hibernate.createBlob(this.blobData);
+ }
+
+ return blob;
}
public void setData(java.sql.Blob data)
{
- this.data = data;
+ try
+ {
+ if(data != null)
+ {
+ this.blobData = IOTools.getBytes(data.getBinaryStream());
+ }
+ }
+ catch(Exception e)
+ {
+ throw new RuntimeException(e);
+ }
}
}
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/impl/jcr/JCRCMS.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/impl/jcr/JCRCMS.java 2009-01-14 11:11:10 UTC (rev 12495)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/impl/jcr/JCRCMS.java 2009-01-14 11:47:46 UTC (rev 12496)
@@ -73,11 +73,7 @@
import java.util.Locale;
import java.util.Set;
-import javax.transaction.TransactionManager;
-import javax.transaction.Status;
-import javax.naming.InitialContext;
-
/**
* @author <a href="mailto:roy@jboss.org">Roy Russo</a>
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
17 years, 3 months
JBoss Portal SVN: r12495 - modules/portlet/trunk/test/src/test.
by portal-commits@lists.jboss.org
Author: chris.laprun(a)jboss.com
Date: 2009-01-14 06:11:10 -0500 (Wed, 14 Jan 2009)
New Revision: 12495
Modified:
modules/portlet/trunk/test/src/test/build.xml
Log:
Do not fail if jetty home is not set since we don't run jetty tests for now.
Modified: modules/portlet/trunk/test/src/test/build.xml
===================================================================
--- modules/portlet/trunk/test/src/test/build.xml 2009-01-14 10:43:40 UTC (rev 12494)
+++ modules/portlet/trunk/test/src/test/build.xml 2009-01-14 11:11:10 UTC (rev 12495)
@@ -323,7 +323,7 @@
<target name="__evaluate_properties.all">
<antcall target="__evaluate_properties.jboss"/>
- <antcall target="__evaluate_properties.jetty"/>
+ <!-- <antcall target="__evaluate_properties.jetty"/> -->
<antcall target="__evaluate_properties.tomcat"/>
</target>
17 years, 3 months
JBoss Portal SVN: r12494 - modules/identity/branches.
by portal-commits@lists.jboss.org
Author: thomas.heute(a)jboss.com
Date: 2009-01-14 05:43:40 -0500 (Wed, 14 Jan 2009)
New Revision: 12494
Added:
modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/
Log:
Release Branch
Copied: modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6 (from rev 12493, modules/identity/branches/JBP_IDENTITY_BRANCH_1_0)
17 years, 3 months
JBoss Portal SVN: r12493 - modules/test/tags/JBOSS_UNIT_1_2_2.
by portal-commits@lists.jboss.org
Author: thomas.heute(a)jboss.com
Date: 2009-01-14 05:31:39 -0500 (Wed, 14 Jan 2009)
New Revision: 12493
Removed:
modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.2.tmp
modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.3.tmp
modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.tmp
modules/test/tags/JBOSS_UNIT_1_2_2/test.diff
Log:
Cleaning
Deleted: modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.2.tmp
===================================================================
--- modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.2.tmp 2009-01-14 03:17:52 UTC (rev 12492)
+++ modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.2.tmp 2009-01-14 10:31:39 UTC (rev 12493)
@@ -1,4 +0,0 @@
-Importing JBoss Unit 1.2.2
---This line, and those below, will be ignored--
-
-A .
Deleted: modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.3.tmp
===================================================================
--- modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.3.tmp 2009-01-14 03:17:52 UTC (rev 12492)
+++ modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.3.tmp 2009-01-14 10:31:39 UTC (rev 12493)
@@ -1,4 +0,0 @@
-Adding JBoss Unit 1.2.2
---This line, and those below, will be ignored--
-
-A .
Deleted: modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.tmp
===================================================================
--- modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.tmp 2009-01-14 03:17:52 UTC (rev 12492)
+++ modules/test/tags/JBOSS_UNIT_1_2_2/svn-commit.tmp 2009-01-14 10:31:39 UTC (rev 12493)
@@ -1,4 +0,0 @@
-Adding JBoss Unit 1.2.2
---This line, and those below, will be ignored--
-
-A .
Deleted: modules/test/tags/JBOSS_UNIT_1_2_2/test.diff
===================================================================
--- modules/test/tags/JBOSS_UNIT_1_2_2/test.diff 2009-01-14 03:17:52 UTC (rev 12492)
+++ modules/test/tags/JBOSS_UNIT_1_2_2/test.diff 2009-01-14 10:31:39 UTC (rev 12493)
@@ -1,6492 +0,0 @@
-diff -r ./build/ide/eclipse/3.1/config/.svn/entries /tmp/trunk/build/ide/eclipse/3.1/config/.svn/entries
-35c35
-< 2009-01-13T10:30:39.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-diff -r ./build/ide/eclipse/3.2/team/.svn/entries /tmp/trunk/build/ide/eclipse/3.2/team/.svn/entries
-35c35
-< 2009-01-13T10:30:40.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-69c69
-< 2009-01-13T10:30:40.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-diff -r ./build/ide/intellij/idea60/config/codestyles/.svn/entries /tmp/trunk/build/ide/intellij/idea60/config/codestyles/.svn/entries
-35c35
-< 2009-01-13T10:30:40.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-diff -r ./build/ide/intellij/idea60/config/fileTemplates/includes/.svn/entries /tmp/trunk/build/ide/intellij/idea60/config/fileTemplates/includes/.svn/entries
-35c35
-< 2009-01-13T10:30:40.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-69c69
-< 2009-01-13T10:30:40.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-diff -r ./build/ide/intellij/idea60/config/fileTemplates/internal/.svn/entries /tmp/trunk/build/ide/intellij/idea60/config/fileTemplates/internal/.svn/entries
-35c35
-< 2009-01-13T10:30:40.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-69c69
-< 2009-01-13T10:30:40.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-103c103
-< 2009-01-13T10:30:40.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-137c137
-< 2009-01-13T10:30:40.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-diff -r ./build/ide/intellij/idea60/config/fileTemplates/.svn/entries /tmp/trunk/build/ide/intellij/idea60/config/fileTemplates/.svn/entries
-38c38
-< 2009-01-13T10:30:40.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-diff -r ./build/ide/intellij/idea60/modules/mc/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/mc/.svn/entries
-35c35
-< 2009-01-13T10:30:41.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-diff -r ./build/ide/intellij/idea60/modules/remote/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/remote/.svn/entries
-35c35
-< 2009-01-13T10:30:42.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea60/modules/test/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/test/.svn/entries
-35c35
-< 2009-01-13T10:30:41.000000Z
----
-> 2009-01-13T12:46:12.000000Z
-diff -r ./build/ide/intellij/idea60/modules/testsuite/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/testsuite/.svn/entries
-35c35
-< 2009-01-13T10:30:41.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea60/modules/thirdparty/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/thirdparty/.svn/entries
-35c35
-< 2009-01-13T10:30:42.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea60/modules/tooling/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/tooling/.svn/entries
-35c35
-< 2009-01-13T10:30:42.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea60/modules/tools/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/tools/.svn/entries
-35c35
-< 2009-01-13T10:30:41.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea60/modules/unit/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/unit/.svn/entries
-35c35
-< 2009-01-13T10:30:41.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea60/.svn/entries /tmp/trunk/build/ide/intellij/idea60/.svn/entries
-38c38
-< 2009-01-13T10:30:42.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-75c75
-< 2009-01-13T10:30:42.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/config/codestyles/.svn/entries /tmp/trunk/build/ide/intellij/idea70/config/codestyles/.svn/entries
-35c35
-< 2009-01-13T10:30:42.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/config/fileTemplates/includes/.svn/entries /tmp/trunk/build/ide/intellij/idea70/config/fileTemplates/includes/.svn/entries
-35c35
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-69c69
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/config/fileTemplates/internal/.svn/entries /tmp/trunk/build/ide/intellij/idea70/config/fileTemplates/internal/.svn/entries
-35c35
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-69c69
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-103c103
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-137c137
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/config/fileTemplates/.svn/entries /tmp/trunk/build/ide/intellij/idea70/config/fileTemplates/.svn/entries
-38c38
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/modules/docs/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/docs/.svn/entries
-35c35
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/modules/mc/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/mc/.svn/entries
-35c35
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/modules/remote/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/remote/.svn/entries
-35c35
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/modules/test/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/test/.svn/entries
-35c35
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/modules/testsuite/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/testsuite/.svn/entries
-35c35
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/modules/thirdparty/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/thirdparty/.svn/entries
-35c35
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/modules/tooling/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/tooling/.svn/entries
-35c35
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/modules/tools/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/tools/.svn/entries
-35c35
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/modules/unit/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/unit/.svn/entries
-35c35
-< 2009-01-13T10:30:43.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/ide/intellij/idea70/.svn/entries /tmp/trunk/build/ide/intellij/idea70/.svn/entries
-38c38
-< 2009-01-13T10:30:44.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-75c75
-< 2009-01-13T10:30:44.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/licences/.svn/entries /tmp/trunk/build/licences/.svn/entries
-35c35
-< 2009-01-13T10:30:44.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./build/pom.xml /tmp/trunk/build/pom.xml
-21c21
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-28,29c28
-< <version.jboss.microcontainer>2.0.2.GA</version.jboss.microcontainer>
-< <version.jboss.man>2.0.0.GA</version.jboss.man>
----
-> <version.jboss.microcontainer>2.0.0.Beta9</version.jboss.microcontainer>
-31c30
-< <version.cargo>1.0-beta-2</version.cargo>
----
-> <version.cargo>1.0-alpha-3</version.cargo>
-33c32
-< <version.jboss.hibernate>3.2.4.SP1_CP04-brew</version.jboss.hibernate>
----
-> <version.jboss.hibernate>3.2.3.GA</version.jboss.hibernate>
-36c35
-< <version.jboss.remoting>2.2.2.SP1</version.jboss.remoting>
----
-> <version.jboss.remoting>2.2.1.GA</version.jboss.remoting>
-42c41
-< <version.jboss-j2ee>4.2.3.GA</version.jboss-j2ee>
----
-> <version.jboss-j2ee>4.2.0.GA</version.jboss-j2ee>
-44,45c43,44
-< <version.jboss-jmx>4.2.3.GA</version.jboss-jmx>
-< <version.jboss-system>4.2.3.GA</version.jboss-system>
----
-> <version.jboss-jmx>4.2.0.GA</version.jboss-jmx>
-> <version.jboss-system>4.2.0.GA</version.jboss-system>
-154,159d152
-< <groupId>org.jboss.man</groupId>
-< <artifactId>jboss-managed</artifactId>
-< <version>${version.jboss.man}</version>
-< </dependency>
-<
-< <dependency>
-diff -r ./build/.svn/entries /tmp/trunk/build/.svn/entries
-38c38
-< 2009-01-13T10:30:45.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-75c75
-< 2009-01-13T10:30:45.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-109c109
-< 2009-01-13T10:30:45.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./docs/pom.xml /tmp/trunk/docs/pom.xml
-7c7
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-13c13
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./docs/.svn/entries /tmp/trunk/docs/.svn/entries
-38c38
-< 2009-01-13T10:31:06.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./docs/user-guide/en/modules/.svn/entries /tmp/trunk/docs/user-guide/en/modules/.svn/entries
-35c35
-< 2009-01-13T10:31:06.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-69c69
-< 2009-01-13T10:31:06.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-103c103
-< 2009-01-13T10:31:06.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./docs/user-guide/en/.svn/entries /tmp/trunk/docs/user-guide/en/.svn/entries
-41c41
-< 2009-01-13T10:31:06.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./docs/user-guide/pom.xml /tmp/trunk/docs/user-guide/pom.xml
-63c63
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./docs/user-guide/.svn/entries /tmp/trunk/docs/user-guide/.svn/entries
-38c38
-< 2009-01-13T10:31:06.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./mc/pom.xml /tmp/trunk/mc/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-24,28d23
-< <groupId>org.jboss.man</groupId>
-< <artifactId>jboss-managed</artifactId>
-< </dependency>
-<
-< <dependency>
-diff -r ./mc/src/main/java/org/jboss/unit/mc/api/annotations/.svn/entries /tmp/trunk/mc/src/main/java/org/jboss/unit/mc/api/annotations/.svn/entries
-35c35
-< 2009-01-13T10:30:47.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./mc/src/main/java/org/jboss/unit/mc/.svn/entries /tmp/trunk/mc/src/main/java/org/jboss/unit/mc/.svn/entries
-35c35
-< 2009-01-13T10:30:47.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-69c69
-< 2009-01-13T10:30:47.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-106c106
-< 2009-01-13T10:30:47.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./mc/src/test/java/org/jboss/test/unit/mc/.svn/entries /tmp/trunk/mc/src/test/java/org/jboss/test/unit/mc/.svn/entries
-35c35
-< 2009-01-13T10:30:45.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-69c69
-< 2009-01-13T10:30:45.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-103c103
-< 2009-01-13T10:30:45.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./mc/src/test/resources/blah/.svn/entries /tmp/trunk/mc/src/test/resources/blah/.svn/entries
-35c35
-< 2009-01-13T10:30:46.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./mc/.svn/entries /tmp/trunk/mc/.svn/entries
-38c38
-< 2009-01-13T10:30:47.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-Only in /tmp/trunk/mc/target: jboss-unit-mc-1.2.0-SNAPSHOT.jar
-Only in /tmp/trunk/mc/target: jboss-unit-mc-1.2.0-SNAPSHOT-sources.jar
-Only in ./mc/target: jboss-unit-mc-1.2.2.jar
-Only in ./mc/target: jboss-unit-mc-1.2.2-sources.jar
-diff -r ./mc/target/surefire-reports/org.jboss.test.unit.mc.MCTestLifeCycleTests.txt /tmp/trunk/mc/target/surefire-reports/org.jboss.test.unit.mc.MCTestLifeCycleTests.txt
-4c4
-< Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.154 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.644 sec
-diff -r ./mc/target/surefire-reports/TEST-org.jboss.test.unit.mc.MCTestLifeCycleTests.xml /tmp/trunk/mc/target/surefire-reports/TEST-org.jboss.test.unit.mc.MCTestLifeCycleTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="1" time="2.131" failures="0" name="org.jboss.test.unit.mc.MCTestLifeCycleTests">
----
-> <testsuite errors="0" skipped="0" tests="1" time="1.624" failures="0" name="org.jboss.test.unit.mc.MCTestLifeCycleTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/mc" name="user.dir"/>
----
-> <property value="/tmp/trunk/mc" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/mc" name="basedir"/>
----
-> <property value="/tmp/trunk/mc" name="basedir"/>
-52a53
-> <property value="org.apache.xerces.dom.DOMXSImplementationSourceImpl" name="org.w3c.dom.DOMImplementationSourceList"/>
-58c59
-< <testcase time="2.107" name="testAll"/>
----
-> <testcase time="1.579" name="testAll"/>
-diff -r ./pom.xml /tmp/trunk/pom.xml
-8c8
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./remote/pom.xml /tmp/trunk/remote/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-28d27
-< <!--
-31c30
-< <artifactId>jboss-microcontainer</artifactId>
----
-> <artifactId>jboss-container</artifactId>
-34d32
-< -->
-53,58c51
-< <dependency>
-< <groupId>apache-log4j</groupId>
-< <artifactId>log4j</artifactId>
-< <scope>compile</scope>
-< </dependency>
-<
----
->
-90a84,89
-> <groupId>apache-log4j</groupId>
-> <artifactId>log4j</artifactId>
-> <version>1.2.14</version>
-> <scope>test</scope>
-> </dependency>
-> <dependency>
-diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/response/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/response/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-103c103
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/http/command/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/handler/http/command/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-103c103
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-137c137
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/http/response/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/handler/http/response/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-103c103
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-137c137
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/http/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/handler/http/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-103c103
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-137c137
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-174c174
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-208c208
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-242c242
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-276c276
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-313c313
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/webpage/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/webpage/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-103c103
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-137c137
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-171c171
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-205c205
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-239c239
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-273c273
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-307c307
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/main/java/org/jboss/unit/remote/http/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/http/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-103c103
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/main/java/org/jboss/unit/remote/server/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/server/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-103c103
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-137c137
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-171c171
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/main/java/org/jboss/unit/remote/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/.svn/entries
-38c38
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-81c81
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/main/java/org/jboss/unit/remote/web/deployment/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/web/deployment/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/main/resources/org/jboss/unit/remote/driver/.svn/entries /tmp/trunk/remote/src/main/resources/org/jboss/unit/remote/driver/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-diff -r ./remote/src/test/java/org/jboss/test/.svn/entries /tmp/trunk/remote/src/test/java/org/jboss/test/.svn/entries
-35c35
-< 2009-01-13T10:31:08.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./remote/src/test/java/org/jboss/unit/test/remote/webpage/.svn/entries /tmp/trunk/remote/src/test/java/org/jboss/unit/test/remote/webpage/.svn/entries
-35c35
-< 2009-01-13T10:31:08.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-69c69
-< 2009-01-13T10:31:08.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./remote/src/test/resources/ear/META-INF/.svn/entries /tmp/trunk/remote/src/test/resources/ear/META-INF/.svn/entries
-35c35
-< 2009-01-13T10:31:08.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-69c69
-< 2009-01-13T10:31:08.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./remote/src/test/resources/.svn/entries /tmp/trunk/remote/src/test/resources/.svn/entries
-35c35
-< 2009-01-13T10:31:09.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-72c72
-< 2009-01-13T10:31:09.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-109c109
-< 2009-01-13T10:31:09.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./remote/src/test/resources/war/.svn/entries /tmp/trunk/remote/src/test/resources/war/.svn/entries
-35c35
-< 2009-01-13T10:31:09.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-72c72
-< 2009-01-13T10:31:09.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./remote/src/test/resources/war/WEB-INF/.svn/entries /tmp/trunk/remote/src/test/resources/war/WEB-INF/.svn/entries
-35c35
-< 2009-01-13T10:31:09.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./remote/src/test/.svn/entries /tmp/trunk/remote/src/test/.svn/entries
-41c41
-< 2009-01-13T10:31:09.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./remote/.svn/entries /tmp/trunk/remote/.svn/entries
-38c38
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:18.000000Z
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: CompositeRemoteTestDriver.class
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: handler
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: ProtocolHandler.class
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: RemoteDriverCommandContext.class
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: RemoteDriverResponseContext.class
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: RemoteTestDriver.class
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: RemoteTestDriverClient.class
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: RemoteTestDriverServer.class
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: TestCaseFactory.class
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: TestConversation.class
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: webpage
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote: http
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote: RequestContext.class
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote: ResponseContext.class
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote: server
-Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote: web
-Only in /tmp/trunk/remote/target: jboss-unit-remote-1.2.0-SNAPSHOT.jar
-Only in /tmp/trunk/remote/target: jboss-unit-remote-1.2.0-SNAPSHOT-sources.jar
-Only in /tmp/trunk/remote/target: selenium
-Only in /tmp/trunk/remote/target: surefire-reports
-Only in /tmp/trunk/remote/target/test-classes: org
-diff -r ./.settings/.svn/entries /tmp/trunk/.settings/.svn/entries
-35c35
-< 2009-01-13T10:31:13.000000Z
----
-> 2009-01-13T12:46:20.000000Z
-69c69
-< 2009-01-13T10:31:13.000000Z
----
-> 2009-01-13T12:46:20.000000Z
-diff -r ./.svn/entries /tmp/trunk/.svn/entries
-47c47
-< 2009-01-13T10:31:13.000000Z
----
-> 2009-01-13T12:46:20.000000Z
-81c81
-< 2009-01-13T10:31:13.000000Z
----
-> 2009-01-13T12:46:20.000000Z
-115c115
-< 2009-01-13T10:31:13.000000Z
----
-> 2009-01-13T12:46:20.000000Z
-152c152
-< 2009-01-13T10:31:13.000000Z
----
-> 2009-01-13T12:46:20.000000Z
-Only in .: svn-commit.tmp
-diff -r ./test/agent/pom.xml /tmp/trunk/test/agent/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./test/agent/resources/META-INF/.svn/entries /tmp/trunk/test/agent/resources/META-INF/.svn/entries
-35c35
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/agent/.svn/entries /tmp/trunk/test/agent/.svn/entries
-38c38
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/core/pom.xml /tmp/trunk/test/core/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./test/core/resources/config/opends/config/schema/.svn/entries /tmp/trunk/test/core/resources/config/opends/config/schema/.svn/entries
-35c35
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-69c69
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-103c103
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-137c137
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-171c171
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-205c205
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-239c239
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-273c273
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-307c307
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-341c341
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-375c375
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-409c409
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-443c443
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/core/resources/config/opends/config/.svn/entries /tmp/trunk/test/core/resources/config/opends/config/.svn/entries
-38c38
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/core/resources/config/opends/db/.svn/entries /tmp/trunk/test/core/resources/config/opends/db/.svn/entries
-35c35
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/core/resources/config/opends/ldif/.svn/entries /tmp/trunk/test/core/resources/config/opends/ldif/.svn/entries
-35c35
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/core/resources/config/opends/locks/.svn/entries /tmp/trunk/test/core/resources/config/opends/locks/.svn/entries
-35c35
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/core/resources/config/opends/logs/.svn/entries /tmp/trunk/test/core/resources/config/opends/logs/.svn/entries
-35c35
-< 2009-01-13T10:30:55.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-69c69
-< 2009-01-13T10:30:55.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-103c103
-< 2009-01-13T10:30:55.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/core/resources/config/.svn/entries /tmp/trunk/test/core/resources/config/.svn/entries
-35c35
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-69c69
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-103c103
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-137c137
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-174c174
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-208c208
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-242c242
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-276c276
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-310c310
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-344c344
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-378c378
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/core/resources/META-INF/.svn/entries /tmp/trunk/test/core/resources/META-INF/.svn/entries
-35c35
-< 2009-01-13T10:30:55.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/core/src/assembly/.svn/entries /tmp/trunk/test/core/src/assembly/.svn/entries
-35c35
-< 2009-01-13T10:30:55.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/core/.svn/entries /tmp/trunk/test/core/.svn/entries
-41c41
-< 2009-01-13T10:30:56.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-Binary files ./test/core/target/opends-config.zip and /tmp/trunk/test/core/target/opends-config.zip differ
-Only in /tmp/trunk/test/core/target: portal-test-1.2.0-SNAPSHOT.jar
-Only in /tmp/trunk/test/core/target: portal-test-1.2.0-SNAPSHOT-sources.jar
-Only in ./test/core/target: portal-test-1.2.2.jar
-Only in ./test/core/target: portal-test-1.2.2-sources.jar
-diff -r ./test/generic/pom.xml /tmp/trunk/test/generic/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./test/generic/resources/org/jboss/portal/test/framework/container/.svn/entries /tmp/trunk/test/generic/resources/org/jboss/portal/test/framework/container/.svn/entries
-35c35
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/generic/.svn/entries /tmp/trunk/test/generic/.svn/entries
-38c38
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-Only in /tmp/trunk/test/generic/target: portal-test-generic-1.2.0-SNAPSHOT.jar
-Only in /tmp/trunk/test/generic/target: portal-test-generic-1.2.0-SNAPSHOT-sources.jar
-Only in ./test/generic/target: portal-test-generic-1.2.2.jar
-Only in ./test/generic/target: portal-test-generic-1.2.2-sources.jar
-diff -r ./test/jboss/pom.xml /tmp/trunk/test/jboss/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./test/jboss/resources/org/jboss/portal/test/framework/container/.svn/entries /tmp/trunk/test/jboss/resources/org/jboss/portal/test/framework/container/.svn/entries
-35c35
-< 2009-01-13T10:30:47.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-69c69
-< 2009-01-13T10:30:47.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./test/jboss/.svn/entries /tmp/trunk/test/jboss/.svn/entries
-38c38
-< 2009-01-13T10:30:48.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./test/opends/pom.xml /tmp/trunk/test/opends/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./test/opends/resources/META-INF/.svn/entries /tmp/trunk/test/opends/resources/META-INF/.svn/entries
-35c35
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/opends/.svn/entries /tmp/trunk/test/opends/.svn/entries
-38c38
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/agent/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/agent/.svn/entries
-35c35
-< 2009-01-13T10:30:55.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/common/io/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/common/io/.svn/entries
-35c35
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/common/xml/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/common/xml/.svn/entries
-35c35
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-69c69
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-103c103
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/deployment/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/deployment/.svn/entries
-35c35
-< 2009-01-13T10:30:51.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-69c69
-< 2009-01-13T10:30:51.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/embedded/apacheds/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/embedded/apacheds/.svn/entries
-35c35
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-69c69
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/embedded/opends/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/embedded/opends/.svn/entries
-35c35
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-69c69
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-103c103
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/embedded/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/embedded/.svn/entries
-35c35
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-69c69
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-103c103
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-143c143
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-177c177
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-211c211
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/impl/generic/agent/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/impl/generic/agent/.svn/entries
-35c35
-< 2009-01-13T10:30:53.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/impl/generic/config/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/impl/generic/config/.svn/entries
-35c35
-< 2009-01-13T10:30:52.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-69c69
-< 2009-01-13T10:30:52.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-103c103
-< 2009-01-13T10:30:52.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-137c137
-< 2009-01-13T10:30:52.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-171c171
-< 2009-01-13T10:30:52.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-205c205
-< 2009-01-13T10:30:52.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-239c239
-< 2009-01-13T10:30:52.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/impl/generic/server/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/impl/generic/server/.svn/entries
-35c35
-< 2009-01-13T10:30:53.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-69c69
-< 2009-01-13T10:30:53.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-103c103
-< 2009-01-13T10:30:53.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-137c137
-< 2009-01-13T10:30:53.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-171c171
-< 2009-01-13T10:30:53.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-205c205
-< 2009-01-13T10:30:53.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/runner/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/runner/.svn/entries
-35c35
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-69c69
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test/src/main/java/org/jboss/portal/test/framework/server/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/server/.svn/entries
-35c35
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-69c69
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-103c103
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-137c137
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-171c171
-< 2009-01-13T10:30:54.000000Z
----
-> 2009-01-13T12:46:13.000000Z
-diff -r ./test/.svn/entries /tmp/trunk/test/.svn/entries
-38c38
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-72c72
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-118c118
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./test.diff /tmp/trunk/test.diff
-1c1
-< diff -r ./build/ide/eclipse/3.1/config/.svn/entries /tmp/trunk/build/ide/eclipse/3.1/config/.svn/entries
----
-> diff -r ./build/ide/eclipse/3.1/config/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/eclipse/3.1/config/.svn/entries
-3c3
-< < 2009-01-13T10:30:39.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-5,6c5,6
-< > 2009-01-13T12:46:12.000000Z
-< diff -r ./build/ide/eclipse/3.2/team/.svn/entries /tmp/trunk/build/ide/eclipse/3.2/team/.svn/entries
----
-> > 2009-01-13T10:30:39.000000Z
-> diff -r ./build/ide/eclipse/3.2/team/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/eclipse/3.2/team/.svn/entries
-8c8
-< < 2009-01-13T10:30:40.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-10c10
-< > 2009-01-13T12:46:12.000000Z
----
-> > 2009-01-13T10:30:40.000000Z
-12c12
-< < 2009-01-13T10:30:40.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-14,15c14,15
-< > 2009-01-13T12:46:12.000000Z
-< diff -r ./build/ide/intellij/idea60/config/codestyles/.svn/entries /tmp/trunk/build/ide/intellij/idea60/config/codestyles/.svn/entries
----
-> > 2009-01-13T10:30:40.000000Z
-> diff -r ./build/ide/intellij/idea60/config/codestyles/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/config/codestyles/.svn/entries
-17c17
-< < 2009-01-13T10:30:40.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-19,20c19,20
-< > 2009-01-13T12:46:12.000000Z
-< diff -r ./build/ide/intellij/idea60/config/fileTemplates/includes/.svn/entries /tmp/trunk/build/ide/intellij/idea60/config/fileTemplates/includes/.svn/entries
----
-> > 2009-01-13T10:30:40.000000Z
-> diff -r ./build/ide/intellij/idea60/config/fileTemplates/includes/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/config/fileTemplates/includes/.svn/entries
-22c22
-< < 2009-01-13T10:30:40.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-24c24
-< > 2009-01-13T12:46:12.000000Z
----
-> > 2009-01-13T10:30:40.000000Z
-26c26
-< < 2009-01-13T10:30:40.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-28,29c28,29
-< > 2009-01-13T12:46:12.000000Z
-< diff -r ./build/ide/intellij/idea60/config/fileTemplates/internal/.svn/entries /tmp/trunk/build/ide/intellij/idea60/config/fileTemplates/internal/.svn/entries
----
-> > 2009-01-13T10:30:40.000000Z
-> diff -r ./build/ide/intellij/idea60/config/fileTemplates/internal/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/config/fileTemplates/internal/.svn/entries
-31c31
-< < 2009-01-13T10:30:40.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-33c33
-< > 2009-01-13T12:46:12.000000Z
----
-> > 2009-01-13T10:30:40.000000Z
-35c35
-< < 2009-01-13T10:30:40.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-37c37
-< > 2009-01-13T12:46:12.000000Z
----
-> > 2009-01-13T10:30:40.000000Z
-39c39
-< < 2009-01-13T10:30:40.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-41c41
-< > 2009-01-13T12:46:12.000000Z
----
-> > 2009-01-13T10:30:40.000000Z
-43c43
-< < 2009-01-13T10:30:40.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-45,46c45,46
-< > 2009-01-13T12:46:12.000000Z
-< diff -r ./build/ide/intellij/idea60/config/fileTemplates/.svn/entries /tmp/trunk/build/ide/intellij/idea60/config/fileTemplates/.svn/entries
----
-> > 2009-01-13T10:30:40.000000Z
-> diff -r ./build/ide/intellij/idea60/config/fileTemplates/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/config/fileTemplates/.svn/entries
-48c48
-< < 2009-01-13T10:30:40.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-50,51c50,51
-< > 2009-01-13T12:46:12.000000Z
-< diff -r ./build/ide/intellij/idea60/modules/mc/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/mc/.svn/entries
----
-> > 2009-01-13T10:30:40.000000Z
-> diff -r ./build/ide/intellij/idea60/modules/mc/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/modules/mc/.svn/entries
-53c53
-< < 2009-01-13T10:30:41.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-55,56c55,56
-< > 2009-01-13T12:46:12.000000Z
-< diff -r ./build/ide/intellij/idea60/modules/remote/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/remote/.svn/entries
----
-> > 2009-01-13T10:30:41.000000Z
-> diff -r ./build/ide/intellij/idea60/modules/remote/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/modules/remote/.svn/entries
-58c58
-< < 2009-01-13T10:30:42.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-60,61c60,61
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea60/modules/test/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/test/.svn/entries
----
-> > 2009-01-13T10:30:42.000000Z
-> diff -r ./build/ide/intellij/idea60/modules/test/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/modules/test/.svn/entries
-63c63
-< < 2009-01-13T10:30:41.000000Z
----
-> < 2009-01-13T12:46:12.000000Z
-65,66c65,66
-< > 2009-01-13T12:46:12.000000Z
-< diff -r ./build/ide/intellij/idea60/modules/testsuite/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/testsuite/.svn/entries
----
-> > 2009-01-13T10:30:41.000000Z
-> diff -r ./build/ide/intellij/idea60/modules/testsuite/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/modules/testsuite/.svn/entries
-68c68
-< < 2009-01-13T10:30:41.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-70,71c70,71
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea60/modules/thirdparty/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/thirdparty/.svn/entries
----
-> > 2009-01-13T10:30:41.000000Z
-> diff -r ./build/ide/intellij/idea60/modules/thirdparty/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/modules/thirdparty/.svn/entries
-73c73
-< < 2009-01-13T10:30:42.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-75,76c75,76
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea60/modules/tooling/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/tooling/.svn/entries
----
-> > 2009-01-13T10:30:42.000000Z
-> diff -r ./build/ide/intellij/idea60/modules/tooling/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/modules/tooling/.svn/entries
-78c78
-< < 2009-01-13T10:30:42.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-80,81c80,81
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea60/modules/tools/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/tools/.svn/entries
----
-> > 2009-01-13T10:30:42.000000Z
-> diff -r ./build/ide/intellij/idea60/modules/tools/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/modules/tools/.svn/entries
-83c83
-< < 2009-01-13T10:30:41.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-85,86c85,86
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea60/modules/unit/.svn/entries /tmp/trunk/build/ide/intellij/idea60/modules/unit/.svn/entries
----
-> > 2009-01-13T10:30:41.000000Z
-> diff -r ./build/ide/intellij/idea60/modules/unit/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/modules/unit/.svn/entries
-88c88
-< < 2009-01-13T10:30:41.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-90,91c90,91
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea60/.svn/entries /tmp/trunk/build/ide/intellij/idea60/.svn/entries
----
-> > 2009-01-13T10:30:41.000000Z
-> diff -r ./build/ide/intellij/idea60/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea60/.svn/entries
-93c93
-< < 2009-01-13T10:30:42.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-95c95
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:42.000000Z
-97c97
-< < 2009-01-13T10:30:42.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-99,100c99,100
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/config/codestyles/.svn/entries /tmp/trunk/build/ide/intellij/idea70/config/codestyles/.svn/entries
----
-> > 2009-01-13T10:30:42.000000Z
-> diff -r ./build/ide/intellij/idea70/config/codestyles/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/config/codestyles/.svn/entries
-102c102
-< < 2009-01-13T10:30:42.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-104,105c104,105
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/config/fileTemplates/includes/.svn/entries /tmp/trunk/build/ide/intellij/idea70/config/fileTemplates/includes/.svn/entries
----
-> > 2009-01-13T10:30:42.000000Z
-> diff -r ./build/ide/intellij/idea70/config/fileTemplates/includes/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/config/fileTemplates/includes/.svn/entries
-107c107
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-109c109
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:43.000000Z
-111c111
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-113,114c113,114
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/config/fileTemplates/internal/.svn/entries /tmp/trunk/build/ide/intellij/idea70/config/fileTemplates/internal/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/config/fileTemplates/internal/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/config/fileTemplates/internal/.svn/entries
-116c116
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-118c118
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:43.000000Z
-120c120
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-122c122
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:43.000000Z
-124c124
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-126c126
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:43.000000Z
-128c128
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-130,131c130,131
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/config/fileTemplates/.svn/entries /tmp/trunk/build/ide/intellij/idea70/config/fileTemplates/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/config/fileTemplates/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/config/fileTemplates/.svn/entries
-133c133
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-135,136c135,136
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/modules/docs/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/docs/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/modules/docs/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/modules/docs/.svn/entries
-138c138
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-140,141c140,141
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/modules/mc/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/mc/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/modules/mc/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/modules/mc/.svn/entries
-143c143
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-145,146c145,146
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/modules/remote/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/remote/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/modules/remote/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/modules/remote/.svn/entries
-148c148
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-150,151c150,151
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/modules/test/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/test/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/modules/test/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/modules/test/.svn/entries
-153c153
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-155,156c155,156
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/modules/testsuite/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/testsuite/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/modules/testsuite/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/modules/testsuite/.svn/entries
-158c158
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-160,161c160,161
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/modules/thirdparty/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/thirdparty/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/modules/thirdparty/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/modules/thirdparty/.svn/entries
-163c163
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-165,166c165,166
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/modules/tooling/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/tooling/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/modules/tooling/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/modules/tooling/.svn/entries
-168c168
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-170,171c170,171
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/modules/tools/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/tools/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/modules/tools/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/modules/tools/.svn/entries
-173c173
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-175,176c175,176
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/modules/unit/.svn/entries /tmp/trunk/build/ide/intellij/idea70/modules/unit/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/modules/unit/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/modules/unit/.svn/entries
-178c178
-< < 2009-01-13T10:30:43.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-180,181c180,181
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/ide/intellij/idea70/.svn/entries /tmp/trunk/build/ide/intellij/idea70/.svn/entries
----
-> > 2009-01-13T10:30:43.000000Z
-> diff -r ./build/ide/intellij/idea70/.svn/entries /home/theute/tmp/modules/jbossunit/build/ide/intellij/idea70/.svn/entries
-183c183
-< < 2009-01-13T10:30:44.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-185c185
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:44.000000Z
-187c187
-< < 2009-01-13T10:30:44.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-189,190c189,190
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/licences/.svn/entries /tmp/trunk/build/licences/.svn/entries
----
-> > 2009-01-13T10:30:44.000000Z
-> diff -r ./build/licences/.svn/entries /home/theute/tmp/modules/jbossunit/build/licences/.svn/entries
-192c192
-< < 2009-01-13T10:30:44.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-194,195c194,195
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./build/pom.xml /tmp/trunk/build/pom.xml
----
-> > 2009-01-13T10:30:44.000000Z
-> diff -r ./build/pom.xml /home/theute/tmp/modules/jbossunit/build/pom.xml
-197c197
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-199,234c199,234
-< > <version>1.2.0-SNAPSHOT</version>
-< 28,29c28
-< < <version.jboss.microcontainer>2.0.2.GA</version.jboss.microcontainer>
-< < <version.jboss.man>2.0.0.GA</version.jboss.man>
-< ---
-< > <version.jboss.microcontainer>2.0.0.Beta9</version.jboss.microcontainer>
-< 31c30
-< < <version.cargo>1.0-beta-2</version.cargo>
-< ---
-< > <version.cargo>1.0-alpha-3</version.cargo>
-< 33c32
-< < <version.jboss.hibernate>3.2.4.SP1_CP04-brew</version.jboss.hibernate>
-< ---
-< > <version.jboss.hibernate>3.2.3.GA</version.jboss.hibernate>
-< 36c35
-< < <version.jboss.remoting>2.2.2.SP1</version.jboss.remoting>
-< ---
-< > <version.jboss.remoting>2.2.1.GA</version.jboss.remoting>
-< 42c41
-< < <version.jboss-j2ee>4.2.3.GA</version.jboss-j2ee>
-< ---
-< > <version.jboss-j2ee>4.2.0.GA</version.jboss-j2ee>
-< 44,45c43,44
-< < <version.jboss-jmx>4.2.3.GA</version.jboss-jmx>
-< < <version.jboss-system>4.2.3.GA</version.jboss-system>
-< ---
-< > <version.jboss-jmx>4.2.0.GA</version.jboss-jmx>
-< > <version.jboss-system>4.2.0.GA</version.jboss-system>
-< 154,159d152
-< < <groupId>org.jboss.man</groupId>
-< < <artifactId>jboss-managed</artifactId>
-< < <version>${version.jboss.man}</version>
-< < </dependency>
-< <
-< < <dependency>
-< diff -r ./build/.svn/entries /tmp/trunk/build/.svn/entries
----
-> > <version>1.2.2</version>
-> 28c28,29
-> < <version.jboss.microcontainer>2.0.0.Beta9</version.jboss.microcontainer>
-> ---
-> > <version.jboss.microcontainer>2.0.2.GA</version.jboss.microcontainer>
-> > <version.jboss.man>2.0.0.GA</version.jboss.man>
-> 30c31
-> < <version.cargo>1.0-alpha-3</version.cargo>
-> ---
-> > <version.cargo>1.0-beta-2</version.cargo>
-> 32c33
-> < <version.jboss.hibernate>3.2.3.GA</version.jboss.hibernate>
-> ---
-> > <version.jboss.hibernate>3.2.4.SP1_CP04-brew</version.jboss.hibernate>
-> 35c36
-> < <version.jboss.remoting>2.2.1.GA</version.jboss.remoting>
-> ---
-> > <version.jboss.remoting>2.2.2.SP1</version.jboss.remoting>
-> 41c42
-> < <version.jboss-j2ee>4.2.0.GA</version.jboss-j2ee>
-> ---
-> > <version.jboss-j2ee>4.2.3.GA</version.jboss-j2ee>
-> 43,44c44,45
-> < <version.jboss-jmx>4.2.0.GA</version.jboss-jmx>
-> < <version.jboss-system>4.2.0.GA</version.jboss-system>
-> ---
-> > <version.jboss-jmx>4.2.3.GA</version.jboss-jmx>
-> > <version.jboss-system>4.2.3.GA</version.jboss-system>
-> 152a154,159
-> > <groupId>org.jboss.man</groupId>
-> > <artifactId>jboss-managed</artifactId>
-> > <version>${version.jboss.man}</version>
-> > </dependency>
-> >
-> > <dependency>
-> diff -r ./build/.svn/entries /home/theute/tmp/modules/jbossunit/build/.svn/entries
-236c236
-< < 2009-01-13T10:30:45.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-238c238
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:45.000000Z
-240c240
-< < 2009-01-13T10:30:45.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-242c242
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:45.000000Z
-244c244
-< < 2009-01-13T10:30:45.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-246,247c246,247
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./docs/pom.xml /tmp/trunk/docs/pom.xml
----
-> > 2009-01-13T10:30:45.000000Z
-> diff -r ./docs/pom.xml /home/theute/tmp/modules/jbossunit/docs/pom.xml
-249c249
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-251c251
-< > <version>1.2.0-SNAPSHOT</version>
----
-> > <version>1.2.2</version>
-253c253
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-255,256c255,256
-< > <version>1.2.0-SNAPSHOT</version>
-< diff -r ./docs/.svn/entries /tmp/trunk/docs/.svn/entries
----
-> > <version>1.2.2</version>
-> diff -r ./docs/.svn/entries /home/theute/tmp/modules/jbossunit/docs/.svn/entries
-258c258
-< < 2009-01-13T10:31:06.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-260,261c260,261
-< > 2009-01-13T12:46:17.000000Z
-< diff -r ./docs/user-guide/en/modules/.svn/entries /tmp/trunk/docs/user-guide/en/modules/.svn/entries
----
-> > 2009-01-13T10:31:06.000000Z
-> diff -r ./docs/user-guide/en/modules/.svn/entries /home/theute/tmp/modules/jbossunit/docs/user-guide/en/modules/.svn/entries
-263c263
-< < 2009-01-13T10:31:06.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-265c265
-< > 2009-01-13T12:46:17.000000Z
----
-> > 2009-01-13T10:31:06.000000Z
-267c267
-< < 2009-01-13T10:31:06.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-269c269
-< > 2009-01-13T12:46:17.000000Z
----
-> > 2009-01-13T10:31:06.000000Z
-271c271
-< < 2009-01-13T10:31:06.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-273,274c273,274
-< > 2009-01-13T12:46:17.000000Z
-< diff -r ./docs/user-guide/en/.svn/entries /tmp/trunk/docs/user-guide/en/.svn/entries
----
-> > 2009-01-13T10:31:06.000000Z
-> diff -r ./docs/user-guide/en/.svn/entries /home/theute/tmp/modules/jbossunit/docs/user-guide/en/.svn/entries
-276c276
-< < 2009-01-13T10:31:06.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-278,279c278,279
-< > 2009-01-13T12:46:17.000000Z
-< diff -r ./docs/user-guide/pom.xml /tmp/trunk/docs/user-guide/pom.xml
----
-> > 2009-01-13T10:31:06.000000Z
-> diff -r ./docs/user-guide/pom.xml /home/theute/tmp/modules/jbossunit/docs/user-guide/pom.xml
-281c281
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-283,284c283,284
-< > <version>1.2.0-SNAPSHOT</version>
-< diff -r ./docs/user-guide/.svn/entries /tmp/trunk/docs/user-guide/.svn/entries
----
-> > <version>1.2.2</version>
-> diff -r ./docs/user-guide/.svn/entries /home/theute/tmp/modules/jbossunit/docs/user-guide/.svn/entries
-286c286
-< < 2009-01-13T10:31:06.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-288,289c288,289
-< > 2009-01-13T12:46:17.000000Z
-< diff -r ./mc/pom.xml /tmp/trunk/mc/pom.xml
----
-> > 2009-01-13T10:31:06.000000Z
-> diff -r ./mc/pom.xml /home/theute/tmp/modules/jbossunit/mc/pom.xml
-291c291
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-293,300c293,300
-< > <version>1.2.0-SNAPSHOT</version>
-< 24,28d23
-< < <groupId>org.jboss.man</groupId>
-< < <artifactId>jboss-managed</artifactId>
-< < </dependency>
-< <
-< < <dependency>
-< diff -r ./mc/src/main/java/org/jboss/unit/mc/api/annotations/.svn/entries /tmp/trunk/mc/src/main/java/org/jboss/unit/mc/api/annotations/.svn/entries
----
-> > <version>1.2.2</version>
-> 23a24,28
-> > <groupId>org.jboss.man</groupId>
-> > <artifactId>jboss-managed</artifactId>
-> > </dependency>
-> >
-> > <dependency>
-> diff -r ./mc/src/main/java/org/jboss/unit/mc/api/annotations/.svn/entries /home/theute/tmp/modules/jbossunit/mc/src/main/java/org/jboss/unit/mc/api/annotations/.svn/entries
-302c302
-< < 2009-01-13T10:30:47.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-304,305c304,305
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./mc/src/main/java/org/jboss/unit/mc/.svn/entries /tmp/trunk/mc/src/main/java/org/jboss/unit/mc/.svn/entries
----
-> > 2009-01-13T10:30:47.000000Z
-> diff -r ./mc/src/main/java/org/jboss/unit/mc/.svn/entries /home/theute/tmp/modules/jbossunit/mc/src/main/java/org/jboss/unit/mc/.svn/entries
-307c307
-< < 2009-01-13T10:30:47.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-309c309
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:47.000000Z
-311c311
-< < 2009-01-13T10:30:47.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-313c313
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:47.000000Z
-315c315
-< < 2009-01-13T10:30:47.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-317,318c317,318
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./mc/src/test/java/org/jboss/test/unit/mc/.svn/entries /tmp/trunk/mc/src/test/java/org/jboss/test/unit/mc/.svn/entries
----
-> > 2009-01-13T10:30:47.000000Z
-> diff -r ./mc/src/test/java/org/jboss/test/unit/mc/.svn/entries /home/theute/tmp/modules/jbossunit/mc/src/test/java/org/jboss/test/unit/mc/.svn/entries
-320c320
-< < 2009-01-13T10:30:45.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-322c322
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:45.000000Z
-324c324
-< < 2009-01-13T10:30:45.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-326c326
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:45.000000Z
-328c328
-< < 2009-01-13T10:30:45.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-330,331c330,331
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./mc/src/test/resources/blah/.svn/entries /tmp/trunk/mc/src/test/resources/blah/.svn/entries
----
-> > 2009-01-13T10:30:45.000000Z
-> diff -r ./mc/src/test/resources/blah/.svn/entries /home/theute/tmp/modules/jbossunit/mc/src/test/resources/blah/.svn/entries
-333c333
-< < 2009-01-13T10:30:46.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-335,336c335,336
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./mc/.svn/entries /tmp/trunk/mc/.svn/entries
----
-> > 2009-01-13T10:30:46.000000Z
-> diff -r ./mc/.svn/entries /home/theute/tmp/modules/jbossunit/mc/.svn/entries
-338,352c338
-< < 2009-01-13T10:30:47.000000Z
-< ---
-< > 2009-01-13T12:46:13.000000Z
-< Only in /tmp/trunk/mc/target: jboss-unit-mc-1.2.0-SNAPSHOT.jar
-< Only in /tmp/trunk/mc/target: jboss-unit-mc-1.2.0-SNAPSHOT-sources.jar
-< Only in ./mc/target: jboss-unit-mc-1.2.2.jar
-< Only in ./mc/target: jboss-unit-mc-1.2.2-sources.jar
-< diff -r ./mc/target/surefire-reports/org.jboss.test.unit.mc.MCTestLifeCycleTests.txt /tmp/trunk/mc/target/surefire-reports/org.jboss.test.unit.mc.MCTestLifeCycleTests.txt
-< 4c4
-< < Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.154 sec
-< ---
-< > Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.644 sec
-< diff -r ./mc/target/surefire-reports/TEST-org.jboss.test.unit.mc.MCTestLifeCycleTests.xml /tmp/trunk/mc/target/surefire-reports/TEST-org.jboss.test.unit.mc.MCTestLifeCycleTests.xml
-< 2c2
-< < <testsuite errors="0" skipped="0" tests="1" time="2.131" failures="0" name="org.jboss.test.unit.mc.MCTestLifeCycleTests">
----
-> < 2009-01-13T12:46:13.000000Z
-354,369c340,342
-< > <testsuite errors="0" skipped="0" tests="1" time="1.624" failures="0" name="org.jboss.test.unit.mc.MCTestLifeCycleTests">
-< 16c16
-< < <property value="/home/theute/tmp/modules/jbossunit/mc" name="user.dir"/>
-< ---
-< > <property value="/tmp/trunk/mc" name="user.dir"/>
-< 19c19
-< < <property value="/home/theute/tmp/modules/jbossunit/mc" name="basedir"/>
-< ---
-< > <property value="/tmp/trunk/mc" name="basedir"/>
-< 52a53
-< > <property value="org.apache.xerces.dom.DOMXSImplementationSourceImpl" name="org.w3c.dom.DOMImplementationSourceList"/>
-< 58c59
-< < <testcase time="2.107" name="testAll"/>
-< ---
-< > <testcase time="1.579" name="testAll"/>
-< diff -r ./pom.xml /tmp/trunk/pom.xml
----
-> > 2009-01-13T10:30:47.000000Z
-> Only in /home/theute/tmp/modules/jbossunit/mc: target
-> diff -r ./pom.xml /home/theute/tmp/modules/jbossunit/pom.xml
-371c344
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-373,374c346,347
-< > <version>1.2.0-SNAPSHOT</version>
-< diff -r ./remote/pom.xml /tmp/trunk/remote/pom.xml
----
-> > <version>1.2.2</version>
-> diff -r ./remote/pom.xml /home/theute/tmp/modules/jbossunit/remote/pom.xml
-376c349
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-378,393c351,361
-< > <version>1.2.0-SNAPSHOT</version>
-< 28d27
-< < <!--
-< 31c30
-< < <artifactId>jboss-microcontainer</artifactId>
-< ---
-< > <artifactId>jboss-container</artifactId>
-< 34d32
-< < -->
-< 53,58c51
-< < <dependency>
-< < <groupId>apache-log4j</groupId>
-< < <artifactId>log4j</artifactId>
-< < <scope>compile</scope>
-< < </dependency>
-< <
----
-> > <version>1.2.2</version>
-> 27a28
-> > <!--
-> 30c31
-> < <artifactId>jboss-container</artifactId>
-> ---
-> > <artifactId>jboss-microcontainer</artifactId>
-> 32a34
-> > -->
-> 51c53,58
-> <
-395,396c363
-< >
-< 90a84,89
----
-> > <dependency>
-398,400c365,366
-< > <artifactId>log4j</artifactId>
-< > <version>1.2.14</version>
-< > <scope>test</scope>
----
-> > <artifactId>log4j</artifactId>
-> > <scope>compile</scope>
-402,403c368,376
-< > <dependency>
-< diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/response/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/response/.svn/entries
----
-> >
-> 84,89d90
-> < <groupId>apache-log4j</groupId>
-> < <artifactId>log4j</artifactId>
-> < <version>1.2.14</version>
-> < <scope>test</scope>
-> < </dependency>
-> < <dependency>
-> diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/response/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/response/.svn/entries
-405c378
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-407c380
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-409c382
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-411c384
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-413c386
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-415,416c388,389
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/java/org/jboss/unit/remote/driver/handler/deployer/.svn/entries
-418c391
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-420,421c393,394
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/http/command/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/handler/http/command/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/http/command/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/java/org/jboss/unit/remote/driver/handler/http/command/.svn/entries
-423c396
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-425c398
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-427c400
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-429c402
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-431c404
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-433c406
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-435c408
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-437,438c410,411
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/http/response/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/handler/http/response/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/http/response/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/java/org/jboss/unit/remote/driver/handler/http/response/.svn/entries
-440c413
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-442c415
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-444c417
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-446c419
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-448c421
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-450c423
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-452c425
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-454,455c427,428
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/http/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/handler/http/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/handler/http/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/java/org/jboss/unit/remote/driver/handler/http/.svn/entries
-457c430
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-459c432
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-461c434
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-463,464c436,437
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/java/org/jboss/unit/remote/driver/.svn/entries
-466c439
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-468c441
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-470c443
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-472c445
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-474c447
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-476c449
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-478c451
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-480c453
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-482c455
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-484c457
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-486c459
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-488c461
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-490c463
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-492c465
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-494c467
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-496c469
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-498c471
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-500,501c473,474
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/webpage/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/driver/webpage/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/main/java/org/jboss/unit/remote/driver/webpage/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/java/org/jboss/unit/remote/driver/webpage/.svn/entries
-503c476
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-505c478
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-507c480
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-509c482
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-511c484
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-513c486
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-515c488
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-517c490
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-519c492
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-521c494
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-523c496
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-525c498
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-527c500
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-529c502
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-531c504
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-533c506
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-535c508
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-537,538c510,511
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/main/java/org/jboss/unit/remote/http/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/http/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/main/java/org/jboss/unit/remote/http/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/java/org/jboss/unit/remote/http/.svn/entries
-540c513
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-542c515
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-544c517
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-546c519
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-548c521
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-550,551c523,524
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/main/java/org/jboss/unit/remote/server/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/server/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/main/java/org/jboss/unit/remote/server/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/java/org/jboss/unit/remote/server/.svn/entries
-553c526
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-555c528
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-557c530
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-559c532
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-561c534
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-563c536
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-565c538
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-567c540
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-569c542
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-571,572c544,545
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/main/java/org/jboss/unit/remote/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/main/java/org/jboss/unit/remote/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/java/org/jboss/unit/remote/.svn/entries
-574c547
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-576c549
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-578c551
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-580,581c553,554
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/main/java/org/jboss/unit/remote/web/deployment/.svn/entries /tmp/trunk/remote/src/main/java/org/jboss/unit/remote/web/deployment/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/main/java/org/jboss/unit/remote/web/deployment/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/java/org/jboss/unit/remote/web/deployment/.svn/entries
-583c556
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-585c558
-< > 2009-01-13T12:46:18.000000Z
----
-> > 2009-01-13T10:31:10.000000Z
-587c560
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-589,590c562,563
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/main/resources/org/jboss/unit/remote/driver/.svn/entries /tmp/trunk/remote/src/main/resources/org/jboss/unit/remote/driver/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/main/resources/org/jboss/unit/remote/driver/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/main/resources/org/jboss/unit/remote/driver/.svn/entries
-592c565
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-594,595c567,568
-< > 2009-01-13T12:46:18.000000Z
-< diff -r ./remote/src/test/java/org/jboss/test/.svn/entries /tmp/trunk/remote/src/test/java/org/jboss/test/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./remote/src/test/java/org/jboss/test/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/test/java/org/jboss/test/.svn/entries
-597c570
-< < 2009-01-13T10:31:08.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-599,600c572,573
-< > 2009-01-13T12:46:17.000000Z
-< diff -r ./remote/src/test/java/org/jboss/unit/test/remote/webpage/.svn/entries /tmp/trunk/remote/src/test/java/org/jboss/unit/test/remote/webpage/.svn/entries
----
-> > 2009-01-13T10:31:08.000000Z
-> diff -r ./remote/src/test/java/org/jboss/unit/test/remote/webpage/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/test/java/org/jboss/unit/test/remote/webpage/.svn/entries
-602c575
-< < 2009-01-13T10:31:08.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-604c577
-< > 2009-01-13T12:46:17.000000Z
----
-> > 2009-01-13T10:31:08.000000Z
-606c579
-< < 2009-01-13T10:31:08.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-608,609c581,582
-< > 2009-01-13T12:46:17.000000Z
-< diff -r ./remote/src/test/resources/ear/META-INF/.svn/entries /tmp/trunk/remote/src/test/resources/ear/META-INF/.svn/entries
----
-> > 2009-01-13T10:31:08.000000Z
-> diff -r ./remote/src/test/resources/ear/META-INF/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/test/resources/ear/META-INF/.svn/entries
-611c584
-< < 2009-01-13T10:31:08.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-613c586
-< > 2009-01-13T12:46:17.000000Z
----
-> > 2009-01-13T10:31:08.000000Z
-615c588
-< < 2009-01-13T10:31:08.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-617,618c590,591
-< > 2009-01-13T12:46:17.000000Z
-< diff -r ./remote/src/test/resources/.svn/entries /tmp/trunk/remote/src/test/resources/.svn/entries
----
-> > 2009-01-13T10:31:08.000000Z
-> diff -r ./remote/src/test/resources/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/test/resources/.svn/entries
-620c593
-< < 2009-01-13T10:31:09.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-622c595
-< > 2009-01-13T12:46:17.000000Z
----
-> > 2009-01-13T10:31:09.000000Z
-624c597
-< < 2009-01-13T10:31:09.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-626c599
-< > 2009-01-13T12:46:17.000000Z
----
-> > 2009-01-13T10:31:09.000000Z
-628c601
-< < 2009-01-13T10:31:09.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-630,631c603,604
-< > 2009-01-13T12:46:17.000000Z
-< diff -r ./remote/src/test/resources/war/.svn/entries /tmp/trunk/remote/src/test/resources/war/.svn/entries
----
-> > 2009-01-13T10:31:09.000000Z
-> diff -r ./remote/src/test/resources/war/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/test/resources/war/.svn/entries
-633c606
-< < 2009-01-13T10:31:09.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-635c608
-< > 2009-01-13T12:46:17.000000Z
----
-> > 2009-01-13T10:31:09.000000Z
-637c610
-< < 2009-01-13T10:31:09.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-639,640c612,613
-< > 2009-01-13T12:46:17.000000Z
-< diff -r ./remote/src/test/resources/war/WEB-INF/.svn/entries /tmp/trunk/remote/src/test/resources/war/WEB-INF/.svn/entries
----
-> > 2009-01-13T10:31:09.000000Z
-> diff -r ./remote/src/test/resources/war/WEB-INF/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/test/resources/war/WEB-INF/.svn/entries
-642c615
-< < 2009-01-13T10:31:09.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-644,645c617,618
-< > 2009-01-13T12:46:17.000000Z
-< diff -r ./remote/src/test/.svn/entries /tmp/trunk/remote/src/test/.svn/entries
----
-> > 2009-01-13T10:31:09.000000Z
-> diff -r ./remote/src/test/.svn/entries /home/theute/tmp/modules/jbossunit/remote/src/test/.svn/entries
-647c620
-< < 2009-01-13T10:31:09.000000Z
----
-> < 2009-01-13T12:46:17.000000Z
-649,650c622,623
-< > 2009-01-13T12:46:17.000000Z
-< diff -r ./remote/.svn/entries /tmp/trunk/remote/.svn/entries
----
-> > 2009-01-13T10:31:09.000000Z
-> diff -r ./remote/.svn/entries /home/theute/tmp/modules/jbossunit/remote/.svn/entries
-652c625
-< < 2009-01-13T10:31:10.000000Z
----
-> < 2009-01-13T12:46:18.000000Z
-654,676c627,629
-< > 2009-01-13T12:46:18.000000Z
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: CompositeRemoteTestDriver.class
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: handler
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: ProtocolHandler.class
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: RemoteDriverCommandContext.class
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: RemoteDriverResponseContext.class
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: RemoteTestDriver.class
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: RemoteTestDriverClient.class
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: RemoteTestDriverServer.class
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: TestCaseFactory.class
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: TestConversation.class
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote/driver: webpage
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote: http
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote: RequestContext.class
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote: ResponseContext.class
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote: server
-< Only in /tmp/trunk/remote/target/classes/org/jboss/unit/remote: web
-< Only in /tmp/trunk/remote/target: jboss-unit-remote-1.2.0-SNAPSHOT.jar
-< Only in /tmp/trunk/remote/target: jboss-unit-remote-1.2.0-SNAPSHOT-sources.jar
-< Only in /tmp/trunk/remote/target: selenium
-< Only in /tmp/trunk/remote/target: surefire-reports
-< Only in /tmp/trunk/remote/target/test-classes: org
-< diff -r ./.settings/.svn/entries /tmp/trunk/.settings/.svn/entries
----
-> > 2009-01-13T10:31:10.000000Z
-> Only in /home/theute/tmp/modules/jbossunit/remote: target
-> diff -r ./.settings/.svn/entries /home/theute/tmp/modules/jbossunit/.settings/.svn/entries
-678c631
-< < 2009-01-13T10:31:13.000000Z
----
-> < 2009-01-13T12:46:20.000000Z
-680c633
-< > 2009-01-13T12:46:20.000000Z
----
-> > 2009-01-13T10:31:13.000000Z
-682c635
-< < 2009-01-13T10:31:13.000000Z
----
-> < 2009-01-13T12:46:20.000000Z
-684,685c637,638
-< > 2009-01-13T12:46:20.000000Z
-< diff -r ./.svn/entries /tmp/trunk/.svn/entries
----
-> > 2009-01-13T10:31:13.000000Z
-> diff -r ./.svn/entries /home/theute/tmp/modules/jbossunit/.svn/entries
-687c640
-< < 2009-01-13T10:31:13.000000Z
----
-> < 2009-01-13T12:46:20.000000Z
-689c642
-< > 2009-01-13T12:46:20.000000Z
----
-> > 2009-01-13T10:31:13.000000Z
-691c644
-< < 2009-01-13T10:31:13.000000Z
----
-> < 2009-01-13T12:46:20.000000Z
-693c646
-< > 2009-01-13T12:46:20.000000Z
----
-> > 2009-01-13T10:31:13.000000Z
-695c648
-< < 2009-01-13T10:31:13.000000Z
----
-> < 2009-01-13T12:46:20.000000Z
-697c650
-< > 2009-01-13T12:46:20.000000Z
----
-> > 2009-01-13T10:31:13.000000Z
-699c652
-< < 2009-01-13T10:31:13.000000Z
----
-> < 2009-01-13T12:46:20.000000Z
-701,703c654,656
-< > 2009-01-13T12:46:20.000000Z
-< Only in .: svn-commit.tmp
-< diff -r ./test/agent/pom.xml /tmp/trunk/test/agent/pom.xml
----
-> > 2009-01-13T10:31:13.000000Z
-> Only in /home/theute/tmp/modules/jbossunit: svn-commit.tmp
-> diff -r ./test/agent/pom.xml /home/theute/tmp/modules/jbossunit/test/agent/pom.xml
-705c658
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-707,708c660,661
-< > <version>1.2.0-SNAPSHOT</version>
-< diff -r ./test/agent/resources/META-INF/.svn/entries /tmp/trunk/test/agent/resources/META-INF/.svn/entries
----
-> > <version>1.2.2</version>
-> diff -r ./test/agent/resources/META-INF/.svn/entries /home/theute/tmp/modules/jbossunit/test/agent/resources/META-INF/.svn/entries
-710c663
-< < 2009-01-13T10:30:57.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-712,713c665,666
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/agent/.svn/entries /tmp/trunk/test/agent/.svn/entries
----
-> > 2009-01-13T10:30:57.000000Z
-> diff -r ./test/agent/.svn/entries /home/theute/tmp/modules/jbossunit/test/agent/.svn/entries
-715c668
-< < 2009-01-13T10:30:57.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-717,718c670,671
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/core/pom.xml /tmp/trunk/test/core/pom.xml
----
-> > 2009-01-13T10:30:57.000000Z
-> diff -r ./test/core/pom.xml /home/theute/tmp/modules/jbossunit/test/core/pom.xml
-720c673
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-722,723c675,676
-< > <version>1.2.0-SNAPSHOT</version>
-< diff -r ./test/core/resources/config/opends/config/schema/.svn/entries /tmp/trunk/test/core/resources/config/opends/config/schema/.svn/entries
----
-> > <version>1.2.2</version>
-> diff -r ./test/core/resources/config/opends/config/schema/.svn/entries /home/theute/tmp/modules/jbossunit/test/core/resources/config/opends/config/schema/.svn/entries
-725c678
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-727c680
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-729c682
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-731c684
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-733c686
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-735c688
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-737c690
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-739c692
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-741c694
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-743c696
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-745c698
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-747c700
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-749c702
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-751c704
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-753c706
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-755c708
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-757c710
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-759c712
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-761c714
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-763c716
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-765c718
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-767c720
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-769c722
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-771c724
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-773c726
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-775,776c728,729
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/core/resources/config/opends/config/.svn/entries /tmp/trunk/test/core/resources/config/opends/config/.svn/entries
----
-> > 2009-01-13T10:30:56.000000Z
-> diff -r ./test/core/resources/config/opends/config/.svn/entries /home/theute/tmp/modules/jbossunit/test/core/resources/config/opends/config/.svn/entries
-778c731
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-780,781c733,734
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/core/resources/config/opends/db/.svn/entries /tmp/trunk/test/core/resources/config/opends/db/.svn/entries
----
-> > 2009-01-13T10:30:56.000000Z
-> diff -r ./test/core/resources/config/opends/db/.svn/entries /home/theute/tmp/modules/jbossunit/test/core/resources/config/opends/db/.svn/entries
-783c736
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-785,786c738,739
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/core/resources/config/opends/ldif/.svn/entries /tmp/trunk/test/core/resources/config/opends/ldif/.svn/entries
----
-> > 2009-01-13T10:30:56.000000Z
-> diff -r ./test/core/resources/config/opends/ldif/.svn/entries /home/theute/tmp/modules/jbossunit/test/core/resources/config/opends/ldif/.svn/entries
-788c741
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-790,791c743,744
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/core/resources/config/opends/locks/.svn/entries /tmp/trunk/test/core/resources/config/opends/locks/.svn/entries
----
-> > 2009-01-13T10:30:56.000000Z
-> diff -r ./test/core/resources/config/opends/locks/.svn/entries /home/theute/tmp/modules/jbossunit/test/core/resources/config/opends/locks/.svn/entries
-793c746
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-795,796c748,749
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/core/resources/config/opends/logs/.svn/entries /tmp/trunk/test/core/resources/config/opends/logs/.svn/entries
----
-> > 2009-01-13T10:30:56.000000Z
-> diff -r ./test/core/resources/config/opends/logs/.svn/entries /home/theute/tmp/modules/jbossunit/test/core/resources/config/opends/logs/.svn/entries
-798c751
-< < 2009-01-13T10:30:55.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-800c753
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:55.000000Z
-802c755
-< < 2009-01-13T10:30:55.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-804c757
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:55.000000Z
-806c759
-< < 2009-01-13T10:30:55.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-808,809c761,762
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/core/resources/config/.svn/entries /tmp/trunk/test/core/resources/config/.svn/entries
----
-> > 2009-01-13T10:30:55.000000Z
-> diff -r ./test/core/resources/config/.svn/entries /home/theute/tmp/modules/jbossunit/test/core/resources/config/.svn/entries
-811c764
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-813c766
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-815c768
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-817c770
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-819c772
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-821c774
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-823c776
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-825c778
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-827c780
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-829c782
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-831c784
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-833c786
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-835c788
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-837c790
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-839c792
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-841c794
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-843c796
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-845c798
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-847c800
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-849c802
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:56.000000Z
-851c804
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-853,854c806,807
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/core/resources/META-INF/.svn/entries /tmp/trunk/test/core/resources/META-INF/.svn/entries
----
-> > 2009-01-13T10:30:56.000000Z
-> diff -r ./test/core/resources/META-INF/.svn/entries /home/theute/tmp/modules/jbossunit/test/core/resources/META-INF/.svn/entries
-856c809
-< < 2009-01-13T10:30:55.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-858,859c811,812
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/core/src/assembly/.svn/entries /tmp/trunk/test/core/src/assembly/.svn/entries
----
-> > 2009-01-13T10:30:55.000000Z
-> diff -r ./test/core/src/assembly/.svn/entries /home/theute/tmp/modules/jbossunit/test/core/src/assembly/.svn/entries
-861c814
-< < 2009-01-13T10:30:55.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-863,864c816,817
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/core/.svn/entries /tmp/trunk/test/core/.svn/entries
----
-> > 2009-01-13T10:30:55.000000Z
-> diff -r ./test/core/.svn/entries /home/theute/tmp/modules/jbossunit/test/core/.svn/entries
-866c819
-< < 2009-01-13T10:30:56.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-868,874c821,823
-< > 2009-01-13T12:46:14.000000Z
-< Binary files ./test/core/target/opends-config.zip and /tmp/trunk/test/core/target/opends-config.zip differ
-< Only in /tmp/trunk/test/core/target: portal-test-1.2.0-SNAPSHOT.jar
-< Only in /tmp/trunk/test/core/target: portal-test-1.2.0-SNAPSHOT-sources.jar
-< Only in ./test/core/target: portal-test-1.2.2.jar
-< Only in ./test/core/target: portal-test-1.2.2-sources.jar
-< diff -r ./test/generic/pom.xml /tmp/trunk/test/generic/pom.xml
----
-> > 2009-01-13T10:30:56.000000Z
-> Only in /home/theute/tmp/modules/jbossunit/test/core: target
-> diff -r ./test/generic/pom.xml /home/theute/tmp/modules/jbossunit/test/generic/pom.xml
-876c825
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-878,879c827,828
-< > <version>1.2.0-SNAPSHOT</version>
-< diff -r ./test/generic/resources/org/jboss/portal/test/framework/container/.svn/entries /tmp/trunk/test/generic/resources/org/jboss/portal/test/framework/container/.svn/entries
----
-> > <version>1.2.2</version>
-> diff -r ./test/generic/resources/org/jboss/portal/test/framework/container/.svn/entries /home/theute/tmp/modules/jbossunit/test/generic/resources/org/jboss/portal/test/framework/container/.svn/entries
-881c830
-< < 2009-01-13T10:30:57.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-883,884c832,833
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/generic/.svn/entries /tmp/trunk/test/generic/.svn/entries
----
-> > 2009-01-13T10:30:57.000000Z
-> diff -r ./test/generic/.svn/entries /home/theute/tmp/modules/jbossunit/test/generic/.svn/entries
-886c835
-< < 2009-01-13T10:30:57.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-888,893c837,839
-< > 2009-01-13T12:46:14.000000Z
-< Only in /tmp/trunk/test/generic/target: portal-test-generic-1.2.0-SNAPSHOT.jar
-< Only in /tmp/trunk/test/generic/target: portal-test-generic-1.2.0-SNAPSHOT-sources.jar
-< Only in ./test/generic/target: portal-test-generic-1.2.2.jar
-< Only in ./test/generic/target: portal-test-generic-1.2.2-sources.jar
-< diff -r ./test/jboss/pom.xml /tmp/trunk/test/jboss/pom.xml
----
-> > 2009-01-13T10:30:57.000000Z
-> Only in /home/theute/tmp/modules/jbossunit/test/generic: target
-> diff -r ./test/jboss/pom.xml /home/theute/tmp/modules/jbossunit/test/jboss/pom.xml
-895c841
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-897,898c843,844
-< > <version>1.2.0-SNAPSHOT</version>
-< diff -r ./test/jboss/resources/org/jboss/portal/test/framework/container/.svn/entries /tmp/trunk/test/jboss/resources/org/jboss/portal/test/framework/container/.svn/entries
----
-> > <version>1.2.2</version>
-> diff -r ./test/jboss/resources/org/jboss/portal/test/framework/container/.svn/entries /home/theute/tmp/modules/jbossunit/test/jboss/resources/org/jboss/portal/test/framework/container/.svn/entries
-900c846
-< < 2009-01-13T10:30:47.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-902c848
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:47.000000Z
-904c850
-< < 2009-01-13T10:30:47.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-906,907c852,853
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./test/jboss/.svn/entries /tmp/trunk/test/jboss/.svn/entries
----
-> > 2009-01-13T10:30:47.000000Z
-> diff -r ./test/jboss/.svn/entries /home/theute/tmp/modules/jbossunit/test/jboss/.svn/entries
-909c855
-< < 2009-01-13T10:30:48.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-911,912c857,858
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./test/opends/pom.xml /tmp/trunk/test/opends/pom.xml
----
-> > 2009-01-13T10:30:48.000000Z
-> diff -r ./test/opends/pom.xml /home/theute/tmp/modules/jbossunit/test/opends/pom.xml
-914c860
-< < <version>1.2.2</version>
----
-> < <version>1.2.0-SNAPSHOT</version>
-916,917c862,863
-< > <version>1.2.0-SNAPSHOT</version>
-< diff -r ./test/opends/resources/META-INF/.svn/entries /tmp/trunk/test/opends/resources/META-INF/.svn/entries
----
-> > <version>1.2.2</version>
-> diff -r ./test/opends/resources/META-INF/.svn/entries /home/theute/tmp/modules/jbossunit/test/opends/resources/META-INF/.svn/entries
-919c865
-< < 2009-01-13T10:30:57.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-921,922c867,868
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/opends/.svn/entries /tmp/trunk/test/opends/.svn/entries
----
-> > 2009-01-13T10:30:57.000000Z
-> diff -r ./test/opends/.svn/entries /home/theute/tmp/modules/jbossunit/test/opends/.svn/entries
-924c870
-< < 2009-01-13T10:30:57.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-926,927c872,873
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/agent/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/agent/.svn/entries
----
-> > 2009-01-13T10:30:57.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/agent/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/agent/.svn/entries
-929c875
-< < 2009-01-13T10:30:55.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-931,932c877,878
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/common/io/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/common/io/.svn/entries
----
-> > 2009-01-13T10:30:55.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/common/io/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/common/io/.svn/entries
-934c880
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-936,937c882,883
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/common/xml/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/common/xml/.svn/entries
----
-> > 2009-01-13T10:30:54.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/common/xml/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/common/xml/.svn/entries
-939c885
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-941c887
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-943c889
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-945c891
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-947c893
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-949,950c895,896
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/deployment/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/deployment/.svn/entries
----
-> > 2009-01-13T10:30:54.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/deployment/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/deployment/.svn/entries
-952c898
-< < 2009-01-13T10:30:51.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-954c900
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:51.000000Z
-956c902
-< < 2009-01-13T10:30:51.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-958,959c904,905
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/embedded/apacheds/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/embedded/apacheds/.svn/entries
----
-> > 2009-01-13T10:30:51.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/embedded/apacheds/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/embedded/apacheds/.svn/entries
-961c907
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-963c909
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-965c911
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-967,968c913,914
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/embedded/opends/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/embedded/opends/.svn/entries
----
-> > 2009-01-13T10:30:54.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/embedded/opends/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/embedded/opends/.svn/entries
-970c916
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-972c918
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-974c920
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-976c922
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-978c924
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-980,981c926,927
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/embedded/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/embedded/.svn/entries
----
-> > 2009-01-13T10:30:54.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/embedded/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/embedded/.svn/entries
-983c929
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-985c931
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-987c933
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-989c935
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-991c937
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-993c939
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-995c941
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-997c943
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-999c945
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-1001c947
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-1003c949
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-1005,1006c951,952
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/impl/generic/agent/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/impl/generic/agent/.svn/entries
----
-> > 2009-01-13T10:30:54.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/impl/generic/agent/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/impl/generic/agent/.svn/entries
-1008c954
-< < 2009-01-13T10:30:53.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1010,1011c956,957
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/impl/generic/config/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/impl/generic/config/.svn/entries
----
-> > 2009-01-13T10:30:53.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/impl/generic/config/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/impl/generic/config/.svn/entries
-1013c959
-< < 2009-01-13T10:30:52.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1015c961
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:52.000000Z
-1017c963
-< < 2009-01-13T10:30:52.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1019c965
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:52.000000Z
-1021c967
-< < 2009-01-13T10:30:52.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1023c969
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:52.000000Z
-1025c971
-< < 2009-01-13T10:30:52.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1027c973
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:52.000000Z
-1029c975
-< < 2009-01-13T10:30:52.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1031c977
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:52.000000Z
-1033c979
-< < 2009-01-13T10:30:52.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1035c981
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:52.000000Z
-1037c983
-< < 2009-01-13T10:30:52.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1039,1040c985,986
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/impl/generic/server/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/impl/generic/server/.svn/entries
----
-> > 2009-01-13T10:30:52.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/impl/generic/server/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/impl/generic/server/.svn/entries
-1042c988
-< < 2009-01-13T10:30:53.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1044c990
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:53.000000Z
-1046c992
-< < 2009-01-13T10:30:53.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1048c994
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:53.000000Z
-1050c996
-< < 2009-01-13T10:30:53.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1052c998
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:53.000000Z
-1054c1000
-< < 2009-01-13T10:30:53.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1056c1002
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:53.000000Z
-1058c1004
-< < 2009-01-13T10:30:53.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1060c1006
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:53.000000Z
-1062c1008
-< < 2009-01-13T10:30:53.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1064,1065c1010,1011
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/runner/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/runner/.svn/entries
----
-> > 2009-01-13T10:30:53.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/runner/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/runner/.svn/entries
-1067c1013
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-1069c1015
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-1071c1017
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-1073,1074c1019,1020
-< > 2009-01-13T12:46:14.000000Z
-< diff -r ./test/src/main/java/org/jboss/portal/test/framework/server/.svn/entries /tmp/trunk/test/src/main/java/org/jboss/portal/test/framework/server/.svn/entries
----
-> > 2009-01-13T10:30:54.000000Z
-> diff -r ./test/src/main/java/org/jboss/portal/test/framework/server/.svn/entries /home/theute/tmp/modules/jbossunit/test/src/main/java/org/jboss/portal/test/framework/server/.svn/entries
-1076c1022
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1078c1024
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-1080c1026
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1082c1028
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-1084c1030
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1086c1032
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-1088c1034
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1090c1036
-< > 2009-01-13T12:46:13.000000Z
----
-> > 2009-01-13T10:30:54.000000Z
-1092c1038
-< < 2009-01-13T10:30:54.000000Z
----
-> < 2009-01-13T12:46:13.000000Z
-1094,1095c1040,1041
-< > 2009-01-13T12:46:13.000000Z
-< diff -r ./test/.svn/entries /tmp/trunk/test/.svn/entries
----
-> > 2009-01-13T10:30:54.000000Z
-> diff -r ./test/.svn/entries /home/theute/tmp/modules/jbossunit/test/.svn/entries
-1097c1043
-< < 2009-01-13T10:30:57.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-1099c1045
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:57.000000Z
-1101c1047
-< < 2009-01-13T10:30:57.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-1103c1049
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:30:57.000000Z
-1105c1051,2462
-< < 2009-01-13T10:30:57.000000Z
----
-> < 2009-01-13T12:46:14.000000Z
-> ---
-> > 2009-01-13T10:30:57.000000Z
-> Only in .: test.diff
-> diff -r ./tooling/ant/pom.xml /home/theute/tmp/modules/jbossunit/tooling/ant/pom.xml
-> 6c6
-> < <version>1.2.0-SNAPSHOT</version>
-> ---
-> > <version>1.2.2</version>
-> diff -r ./tooling/ant/src/main/java/org/jboss/unit/tooling/ant/configuration/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/ant/src/main/java/org/jboss/unit/tooling/ant/configuration/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 69c69
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 103c103
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 137c137
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 171c171
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 205c205
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 239c239
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 273c273
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./tooling/ant/src/main/java/org/jboss/unit/tooling/ant/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/ant/src/main/java/org/jboss/unit/tooling/ant/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 69c69
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./tooling/ant/src/test/java/org/jboss/test/unit/tooling/simple/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/ant/src/test/java/org/jboss/test/unit/tooling/simple/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./tooling/ant/src/test/java/org/jboss/test/unit/tooling/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/ant/src/test/java/org/jboss/test/unit/tooling/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./tooling/ant/src/test/resources/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/ant/src/test/resources/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 69c69
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./tooling/ant/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/ant/.svn/entries
-> 38c38
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> Only in /home/theute/tmp/modules/jbossunit/tooling/ant: target
-> diff -r ./tooling/core/pom.xml /home/theute/tmp/modules/jbossunit/tooling/core/pom.xml
-> 6c6
-> < <version>1.2.0-SNAPSHOT</version>
-> ---
-> > <version>1.2.2</version>
-> diff -r ./tooling/core/src/main/java/org/jboss/unit/tooling/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/core/src/main/java/org/jboss/unit/tooling/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 69c69
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 103c103
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> 137c137
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> diff -r ./tooling/core/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/core/.svn/entries
-> 38c38
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:10.000000Z
-> Only in /home/theute/tmp/modules/jbossunit/tooling/core: target
-> diff -r ./tooling/examples/ant/lib/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/examples/ant/lib/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:11.000000Z
-> 69c69
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:11.000000Z
-> 103c103
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:11.000000Z
-> diff -r ./tooling/examples/ant/src/org/jboss/test/unit/tooling/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/examples/ant/src/org/jboss/test/unit/tooling/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:12.000000Z
-> diff -r ./tooling/examples/ant/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/examples/ant/.svn/entries
-> 41c41
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:12.000000Z
-> 75c75
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:12.000000Z
-> diff -r ./tooling/examples/maven2/pom.xml /home/theute/tmp/modules/jbossunit/tooling/examples/maven2/pom.xml
-> 14c14
-> < <version>1.2.0-SNAPSHOT</version>
-> ---
-> > <version>1.2.2</version>
-> 42c42
-> < <version>1.2.0-SNAPSHOT</version>
-> ---
-> > <version>1.2.2</version>
-> diff -r ./tooling/examples/maven2/src/test/java/org/jboss/test/unit/tooling/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/examples/maven2/src/test/java/org/jboss/test/unit/tooling/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:13.000000Z
-> diff -r ./tooling/examples/maven2/src/test/resources/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/examples/maven2/src/test/resources/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:20.000000Z
-> ---
-> > 2009-01-13T10:31:13.000000Z
-> diff -r ./tooling/examples/maven2/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/examples/maven2/.svn/entries
-> 38c38
-> < 2009-01-13T12:46:20.000000Z
-> ---
-> > 2009-01-13T10:31:13.000000Z
-> diff -r ./tooling/maven2/pom.xml /home/theute/tmp/modules/jbossunit/tooling/maven2/pom.xml
-> 6c6
-> < <version>1.2.0-SNAPSHOT</version>
-> ---
-> > <version>1.2.2</version>
-> diff -r ./tooling/maven2/src/main/java/org/jboss/unit/tooling/maven2/configuration/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/maven2/src/main/java/org/jboss/unit/tooling/maven2/configuration/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:11.000000Z
-> 69c69
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:11.000000Z
-> 103c103
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:11.000000Z
-> 137c137
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:11.000000Z
-> diff -r ./tooling/maven2/src/main/java/org/jboss/unit/tooling/maven2/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/maven2/src/main/java/org/jboss/unit/tooling/maven2/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:11.000000Z
-> 72c72
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:11.000000Z
-> diff -r ./tooling/maven2/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/maven2/.svn/entries
-> 38c38
-> < 2009-01-13T12:46:19.000000Z
-> ---
-> > 2009-01-13T10:31:11.000000Z
-> Only in /home/theute/tmp/modules/jbossunit/tooling/maven2: target
-> diff -r ./tooling/pom.xml /home/theute/tmp/modules/jbossunit/tooling/pom.xml
-> 6c6
-> < <version>1.2.0-SNAPSHOT</version>
-> ---
-> > <version>1.2.2</version>
-> 14c14
-> < <version>1.2.0-SNAPSHOT</version>
-> ---
-> > <version>1.2.2</version>
-> diff -r ./tooling/.svn/entries /home/theute/tmp/modules/jbossunit/tooling/.svn/entries
-> 44c44
-> < 2009-01-13T12:46:20.000000Z
-> ---
-> > 2009-01-13T10:31:13.000000Z
-> diff -r ./unit/output/tests/html/_Main?c=d&e=f-out.txt /home/theute/tmp/modules/jbossunit/unit/output/tests/html/_Main?c=d&e=f-out.txt
-> 2c2
-> < Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.006 sec
-> ---
-> > Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.002 sec
-> diff -r ./unit/output/tests/html/__none_-out.txt /home/theute/tmp/modules/jbossunit/unit/output/tests/html/__none_-out.txt
-> 4c4
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
-> 6c6
-> < Testcase: testFoo took 0.02 sec
-> ---
-> > Testcase: testFoo took 0.027 sec
-> 8c8
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.027 sec
-> 10c10
-> < Testcase: testFoo took 0.021 sec
-> ---
-> > Testcase: testFoo took 0.02 sec
-> 12c12
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.025 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
-> 66c66
-> < Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.018 sec
-> ---
-> > Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.012 sec
-> 112c112
-> < Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.006 sec
-> ---
-> > Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.002 sec
-> diff -r ./unit/output/tests/html/org/jboss/test/unit/sample/package-summary.html /home/theute/tmp/modules/jbossunit/unit/output/tests/html/org/jboss/test/unit/sample/package-summary.html
-> 22c22
-> < <td><a href="_TestedClass1.html">TestedClass1</a></td><td>2</td><td>0</td><td>0</td><td>0.020</td>
-> ---
-> > <td><a href="_TestedClass1.html">TestedClass1</a></td><td>2</td><td>0</td><td>0</td><td>0.027</td>
-> 25c25
-> < <td><a href="_TestedClass1?a=b.html">TestedClass1?a=b</a></td><td>1</td><td>0</td><td>0</td><td>0.021</td>
-> ---
-> > <td><a href="_TestedClass1?a=b.html">TestedClass1?a=b</a></td><td>1</td><td>0</td><td>0</td><td>0.020</td>
-> diff -r ./unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1?a=b.html /home/theute/tmp/modules/jbossunit/unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1?a=b.html
-> 54c54
-> < <td><a href="_TestedClass1?a=b.html">TestedClass1?a=b</a></td><td>1</td><td>0</td><td>0</td><td>0.021</td>
-> ---
-> > <td><a href="_TestedClass1?a=b.html">TestedClass1?a=b</a></td><td>1</td><td>0</td><td>0</td><td>0.020</td>
-> 63c63
-> < <td>testFoo</td><td>Success</td><td></td><td>0.021</td>
-> ---
-> > <td>testFoo</td><td>Success</td><td></td><td>0.020</td>
-> diff -r ./unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1?a=b-out.txt /home/theute/tmp/modules/jbossunit/unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1?a=b-out.txt
-> 2c2
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.027 sec
-> 4c4
-> < Testcase: testFoo took 0.021 sec
-> ---
-> > Testcase: testFoo took 0.02 sec
-> diff -r ./unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1.html /home/theute/tmp/modules/jbossunit/unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1.html
-> 54c54
-> < <td><a href="_TestedClass1.html">TestedClass1</a></td><td>2</td><td>0</td><td>0</td><td>0.020</td>
-> ---
-> > <td><a href="_TestedClass1.html">TestedClass1</a></td><td>2</td><td>0</td><td>0</td><td>0.027</td>
-> 66c66
-> < <td>testFoo</td><td>Success</td><td></td><td>0.020</td>
-> ---
-> > <td>testFoo</td><td>Success</td><td></td><td>0.027</td>
-> diff -r ./unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1-out.txt /home/theute/tmp/modules/jbossunit/unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1-out.txt
-> 3c3
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
-> 5c5
-> < Testcase: testFoo took 0.02 sec
-> ---
-> > Testcase: testFoo took 0.027 sec
-> diff -r ./unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass2-out.txt /home/theute/tmp/modules/jbossunit/unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass2-out.txt
-> 2c2
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.025 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
-> diff -r ./unit/output/tests/html/overview-summary.html /home/theute/tmp/modules/jbossunit/unit/output/tests/html/overview-summary.html
-> 21c21
-> < <td>11</td><td>3</td><td>1</td><td>63.64%</td><td>0.041</td>
-> ---
-> > <td>11</td><td>3</td><td>1</td><td>63.64%</td><td>0.047</td>
-> 40c40
-> < <td><a href="./org/jboss/test/unit/sample/package-summary.html">org.jboss.test.unit.sample</a></td><td>5</td><td>0</td><td>1</td><td>0.041</td>
-> ---
-> > <td><a href="./org/jboss/test/unit/sample/package-summary.html">org.jboss.test.unit.sample</a></td><td>5</td><td>0</td><td>1</td><td>0.047</td>
-> diff -r ./unit/output/tests/html/TESTS-TestSuites.xml /home/theute/tmp/modules/jbossunit/unit/output/tests/html/TESTS-TestSuites.xml
-> 52c52
-> < Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.006 sec
-> ---
-> > Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.002 sec
-> 169c169
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.025 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
-> 270c270
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
-> 272c272
-> < Testcase: testFoo took 0.02 sec
-> ---
-> > Testcase: testFoo took 0.027 sec
-> 274c274
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.027 sec
-> 276c276
-> < Testcase: testFoo took 0.021 sec
-> ---
-> > Testcase: testFoo took 0.02 sec
-> 278c278
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.025 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
-> 332c332
-> < Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.018 sec
-> ---
-> > Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.012 sec
-> 378c378
-> < Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.006 sec
-> ---
-> > Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.002 sec
-> 386,387c386,387
-> < <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="TestedClass1?a=b" package="org.jboss.test.unit.sample" tests="1" time="0.021">
-> < <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.021"/>
-> ---
-> > <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="TestedClass1?a=b" package="org.jboss.test.unit.sample" tests="1" time="0.02">
-> > <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.02"/>
-> 391c391
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.027 sec
-> 393c393
-> < Testcase: testFoo took 0.021 sec
-> ---
-> > Testcase: testFoo took 0.02 sec
-> 396c396
-> < <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="TestedClass1" package="org.jboss.test.unit.sample" tests="2" time="0.02">
-> ---
-> > <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="TestedClass1" package="org.jboss.test.unit.sample" tests="2" time="0.027">
-> 398c398
-> < <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.02"/>
-> ---
-> > <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.027"/>
-> 403c403
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
-> 405c405
-> < Testcase: testFoo took 0.02 sec
-> ---
-> > Testcase: testFoo took 0.027 sec
-> diff -r ./unit/output/tests/xml/TEST-0.xml /home/theute/tmp/modules/jbossunit/unit/output/tests/xml/TEST-0.xml
-> 51c51
-> < Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.006 sec
-> ---
-> > Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.002 sec
-> diff -r ./unit/output/tests/xml/TEST-2.xml /home/theute/tmp/modules/jbossunit/unit/output/tests/xml/TEST-2.xml
-> 57c57
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.025 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
-> diff -r ./unit/output/tests/xml/TEST-3.xml /home/theute/tmp/modules/jbossunit/unit/output/tests/xml/TEST-3.xml
-> 48c48
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
-> 50c50
-> < Testcase: testFoo took 0.02 sec
-> ---
-> > Testcase: testFoo took 0.027 sec
-> 52c52
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.027 sec
-> 54c54
-> < Testcase: testFoo took 0.021 sec
-> ---
-> > Testcase: testFoo took 0.02 sec
-> 56c56
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.025 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
-> 110c110
-> < Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.018 sec
-> ---
-> > Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.012 sec
-> 156c156
-> < Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.006 sec
-> ---
-> > Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.002 sec
-> diff -r ./unit/output/tests/xml/TEST-4.xml /home/theute/tmp/modules/jbossunit/unit/output/tests/xml/TEST-4.xml
-> 2,3c2,3
-> < <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="org.jboss.test.unit.sample.TestedClass1?a=b" tests="1" time="0.021">
-> < <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.021"/>
-> ---
-> > <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="org.jboss.test.unit.sample.TestedClass1?a=b" tests="1" time="0.02">
-> > <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.02"/>
-> 7c7
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.031 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.027 sec
-> 9c9
-> < Testcase: testFoo took 0.021 sec
-> ---
-> > Testcase: testFoo took 0.02 sec
-> diff -r ./unit/output/tests/xml/TEST-5.xml /home/theute/tmp/modules/jbossunit/unit/output/tests/xml/TEST-5.xml
-> 2c2
-> < <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="org.jboss.test.unit.sample.TestedClass1" tests="2" time="0.02">
-> ---
-> > <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="org.jboss.test.unit.sample.TestedClass1" tests="2" time="0.027">
-> 4c4
-> < <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.02"/>
-> ---
-> > <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.027"/>
-> 9c9
-> < Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
-> ---
-> > Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
-> 11c11
-> < Testcase: testFoo took 0.02 sec
-> ---
-> > Testcase: testFoo took 0.027 sec
-> diff -r ./unit/pom.xml /home/theute/tmp/modules/jbossunit/unit/pom.xml
-> 6c6
-> < <version>1.2.0-SNAPSHOT</version>
-> ---
-> > <version>1.2.2</version>
-> diff -r ./unit/src/main/java/org/jboss/unit/api/pojo/annotations/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/api/pojo/annotations/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 103c103
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 137c137
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 171c171
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 205c205
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/api/pojo/junit/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/api/pojo/junit/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 103c103
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 137c137
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 171c171
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 205c205
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/api/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/api/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/driver/command/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/driver/command/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/driver/impl/composite/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/driver/impl/composite/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/driver/impl/pojo/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/driver/impl/pojo/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 103c103
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 137c137
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 171c171
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 205c205
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/driver/response/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/driver/response/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/driver/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/driver/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 106c106
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 140c140
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 174c174
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> 208c208
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:01.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/info/impl/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/info/impl/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 103c103
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 137c137
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/info/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/info/.svn/entries
-> 38c38
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 72c72
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 106c106
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 140c140
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/report/impl/junit/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/report/impl/junit/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 103c103
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 137c137
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 171c171
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 205c205
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/report/impl/writer/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/report/impl/writer/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/event/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/event/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 103c103
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 137c137
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 171c171
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 205c205
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 239c239
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/composite/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/impl/composite/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/driver/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/impl/driver/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/event/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/impl/event/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/failure/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/impl/failure/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/generic/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/impl/generic/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/pojo/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/impl/pojo/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/impl/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 109c109
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 152c152
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 189c189
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/model/composite/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/model/composite/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/model/generic/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/model/generic/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/model/pojo/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/model/pojo/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 103c103
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/model/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/model/.svn/entries
-> 38c38
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 72c72
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 109c109
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 143c143
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 180c180
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 214c214
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/results/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/results/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 69c69
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/runner/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/runner/.svn/entries
-> 47c47
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 81c81
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 115c115
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 149c149
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 183c183
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 217c217
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 251c251
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 285c285
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 319c319
-> < 2009-01-13T12:46:16.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/spi/pojo/annotations/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/spi/pojo/annotations/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/spi/pojo/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/spi/pojo/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 69c69
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 103c103
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 137c137
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 174c174
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 208c208
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 242c242
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 276c276
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 310c310
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 344c344
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 378c378
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 412c412
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 446c446
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 480c480
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:05.000000Z
-> 69c69
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:05.000000Z
-> 109c109
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:05.000000Z
-> 158c158
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:05.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/tooling/filter/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/tooling/filter/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 69c69
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 103c103
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> 137c137
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:03.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/tooling/report/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/tooling/report/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:04.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/tooling/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/tooling/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:04.000000Z
-> 69c69
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:04.000000Z
-> 103c103
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:04.000000Z
-> 137c137
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:04.000000Z
-> 174c174
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:04.000000Z
-> 208c208
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:04.000000Z
-> 245c245
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:04.000000Z
-> diff -r ./unit/src/main/java/org/jboss/unit/util/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/java/org/jboss/unit/util/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:05.000000Z
-> 69c69
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:05.000000Z
-> diff -r ./unit/src/main/resources/org/jboss/unit/report/impl/junit/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/resources/org/jboss/unit/report/impl/junit/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:05.000000Z
-> diff -r ./unit/src/main/resources/org/jboss/unit/runner/model/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/main/resources/org/jboss/unit/runner/model/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:17.000000Z
-> ---
-> > 2009-01-13T10:31:05.000000Z
-> diff -r ./unit/src/test/java/org/jboss/test/unit/api/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/java/org/jboss/test/unit/api/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> diff -r ./unit/src/test/java/org/jboss/test/unit/info/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/java/org/jboss/test/unit/info/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> diff -r ./unit/src/test/java/org/jboss/test/unit/pojo/junit/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/java/org/jboss/test/unit/pojo/junit/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:58.000000Z
-> 69c69
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:58.000000Z
-> 103c103
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:58.000000Z
-> 137c137
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:58.000000Z
-> 171c171
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:58.000000Z
-> 205c205
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:58.000000Z
-> 239c239
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:58.000000Z
-> diff -r ./unit/src/test/java/org/jboss/test/unit/pojo/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/java/org/jboss/test/unit/pojo/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 69c69
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 103c103
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 137c137
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 171c171
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 205c205
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 239c239
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 273c273
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 307c307
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 341c341
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 375c375
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 409c409
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 443c443
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 477c477
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 511c511
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 545c545
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 579c579
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 613c613
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 647c647
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 681c681
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 715c715
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 749c749
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 783c783
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 820c820
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 854c854
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 888c888
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 922c922
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 956c956
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 990c990
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1024c1024
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1058c1058
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1092c1092
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1126c1126
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1160c1160
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1194c1194
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1228c1228
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1262c1262
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1296c1296
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1330c1330
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1364c1364
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1398c1398
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1432c1432
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1466c1466
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1500c1500
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1534c1534
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1568c1568
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1602c1602
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1636c1636
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1670c1670
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1704c1704
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1738c1738
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1772c1772
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1806c1806
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1840c1840
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1874c1874
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1908c1908
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1942c1942
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 1976c1976
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2010c2010
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2044c2044
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2078c2078
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2112c2112
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2146c2146
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2180c2180
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2214c2214
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2248c2248
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2282c2282
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2316c2316
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2350c2350
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2384c2384
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2418c2418
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2452c2452
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2486c2486
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2520c2520
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2554c2554
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 2588c2588
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> diff -r ./unit/src/test/java/org/jboss/test/unit/report/junit/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/java/org/jboss/test/unit/report/junit/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 69c69
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 103c103
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> diff -r ./unit/src/test/java/org/jboss/test/unit/runner/event/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/java/org/jboss/test/unit/runner/event/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 69c69
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> diff -r ./unit/src/test/java/org/jboss/test/unit/runner/model/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/java/org/jboss/test/unit/runner/model/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> diff -r ./unit/src/test/java/org/jboss/test/unit/runner/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/java/org/jboss/test/unit/runner/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 72c72
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 109c109
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 143c143
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 177c177
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 211c211
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 245c245
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> diff -r ./unit/src/test/java/org/jboss/test/unit/sample/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/java/org/jboss/test/unit/sample/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:14.000000Z
-> ---
-> > 2009-01-13T10:30:57.000000Z
-> 69c69
-> < 2009-01-13T12:46:14.000000Z
-> ---
-> > 2009-01-13T10:30:57.000000Z
-> 103c103
-> < 2009-01-13T12:46:14.000000Z
-> ---
-> > 2009-01-13T10:30:57.000000Z
-> 137c137
-> < 2009-01-13T12:46:14.000000Z
-> ---
-> > 2009-01-13T10:30:57.000000Z
-> 171c171
-> < 2009-01-13T12:46:14.000000Z
-> ---
-> > 2009-01-13T10:30:57.000000Z
-> diff -r ./unit/src/test/java/org/jboss/test/unit/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/java/org/jboss/test/unit/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> 87c87
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:30:59.000000Z
-> diff -r ./unit/src/test/resources/org/jboss/test/unit/runner/model/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/resources/org/jboss/test/unit/runner/model/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> 69c69
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/src/test/resources/org/jboss/test/unit/sample/.svn/entries /home/theute/tmp/modules/jbossunit/unit/src/test/resources/org/jboss/test/unit/sample/.svn/entries
-> 35c35
-> < 2009-01-13T12:46:15.000000Z
-> ---
-> > 2009-01-13T10:31:00.000000Z
-> diff -r ./unit/.svn/entries /home/theute/tmp/modules/jbossunit/unit/.svn/entries
-> 38c38
-> < 2009-01-13T12:46:17.000000Z
-1107c2464,2465
-< > 2009-01-13T12:46:14.000000Z
----
-> > 2009-01-13T10:31:05.000000Z
-> Only in /home/theute/tmp/modules/jbossunit/unit: target
-diff -r ./tooling/ant/pom.xml /tmp/trunk/tooling/ant/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./tooling/ant/src/main/java/org/jboss/unit/tooling/ant/configuration/.svn/entries /tmp/trunk/tooling/ant/src/main/java/org/jboss/unit/tooling/ant/configuration/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-103c103
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-137c137
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-171c171
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-205c205
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-239c239
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-273c273
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/ant/src/main/java/org/jboss/unit/tooling/ant/.svn/entries /tmp/trunk/tooling/ant/src/main/java/org/jboss/unit/tooling/ant/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/ant/src/test/java/org/jboss/test/unit/tooling/simple/.svn/entries /tmp/trunk/tooling/ant/src/test/java/org/jboss/test/unit/tooling/simple/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/ant/src/test/java/org/jboss/test/unit/tooling/.svn/entries /tmp/trunk/tooling/ant/src/test/java/org/jboss/test/unit/tooling/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/ant/src/test/resources/.svn/entries /tmp/trunk/tooling/ant/src/test/resources/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/ant/.svn/entries /tmp/trunk/tooling/ant/.svn/entries
-38c38
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-Only in /tmp/trunk/tooling/ant/target: jboss-unit-tooling-ant-1.2.0-SNAPSHOT.jar
-Only in /tmp/trunk/tooling/ant/target: jboss-unit-tooling-ant-1.2.0-SNAPSHOT-sources.jar
-Only in ./tooling/ant/target: jboss-unit-tooling-ant-1.2.2.jar
-Only in ./tooling/ant/target: jboss-unit-tooling-ant-1.2.2-sources.jar
-diff -r ./tooling/core/pom.xml /tmp/trunk/tooling/core/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./tooling/core/src/main/java/org/jboss/unit/tooling/.svn/entries /tmp/trunk/tooling/core/src/main/java/org/jboss/unit/tooling/.svn/entries
-35c35
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-69c69
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-103c103
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-137c137
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/core/.svn/entries /tmp/trunk/tooling/core/.svn/entries
-38c38
-< 2009-01-13T10:31:10.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-Only in /tmp/trunk/tooling/core/target: jboss-unit-tooling-core-1.2.0-SNAPSHOT.jar
-Only in /tmp/trunk/tooling/core/target: jboss-unit-tooling-core-1.2.0-SNAPSHOT-sources.jar
-Only in ./tooling/core/target: jboss-unit-tooling-core-1.2.2.jar
-Only in ./tooling/core/target: jboss-unit-tooling-core-1.2.2-sources.jar
-diff -r ./tooling/examples/ant/lib/.svn/entries /tmp/trunk/tooling/examples/ant/lib/.svn/entries
-35c35
-< 2009-01-13T10:31:11.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-69c69
-< 2009-01-13T10:31:11.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-103c103
-< 2009-01-13T10:31:11.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/examples/ant/src/org/jboss/test/unit/tooling/.svn/entries /tmp/trunk/tooling/examples/ant/src/org/jboss/test/unit/tooling/.svn/entries
-35c35
-< 2009-01-13T10:31:12.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/examples/ant/.svn/entries /tmp/trunk/tooling/examples/ant/.svn/entries
-41c41
-< 2009-01-13T10:31:12.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-75c75
-< 2009-01-13T10:31:12.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/examples/maven2/pom.xml /tmp/trunk/tooling/examples/maven2/pom.xml
-14c14
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-42c42
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./tooling/examples/maven2/src/test/java/org/jboss/test/unit/tooling/.svn/entries /tmp/trunk/tooling/examples/maven2/src/test/java/org/jboss/test/unit/tooling/.svn/entries
-35c35
-< 2009-01-13T10:31:13.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/examples/maven2/src/test/resources/.svn/entries /tmp/trunk/tooling/examples/maven2/src/test/resources/.svn/entries
-35c35
-< 2009-01-13T10:31:13.000000Z
----
-> 2009-01-13T12:46:20.000000Z
-diff -r ./tooling/examples/maven2/.svn/entries /tmp/trunk/tooling/examples/maven2/.svn/entries
-38c38
-< 2009-01-13T10:31:13.000000Z
----
-> 2009-01-13T12:46:20.000000Z
-diff -r ./tooling/maven2/pom.xml /tmp/trunk/tooling/maven2/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./tooling/maven2/src/main/java/org/jboss/unit/tooling/maven2/configuration/.svn/entries /tmp/trunk/tooling/maven2/src/main/java/org/jboss/unit/tooling/maven2/configuration/.svn/entries
-35c35
-< 2009-01-13T10:31:11.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-69c69
-< 2009-01-13T10:31:11.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-103c103
-< 2009-01-13T10:31:11.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-137c137
-< 2009-01-13T10:31:11.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/maven2/src/main/java/org/jboss/unit/tooling/maven2/.svn/entries /tmp/trunk/tooling/maven2/src/main/java/org/jboss/unit/tooling/maven2/.svn/entries
-35c35
-< 2009-01-13T10:31:11.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-72c72
-< 2009-01-13T10:31:11.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/maven2/.svn/entries /tmp/trunk/tooling/maven2/.svn/entries
-38c38
-< 2009-01-13T10:31:11.000000Z
----
-> 2009-01-13T12:46:19.000000Z
-diff -r ./tooling/maven2/target/classes/META-INF/maven/plugin.xml /tmp/trunk/tooling/maven2/target/classes/META-INF/maven/plugin.xml
-5c5
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-207c207
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-213c213
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-Only in /tmp/trunk/tooling/maven2/target: jboss-unit-tooling-maven2-1.2.0-SNAPSHOT.jar
-Only in /tmp/trunk/tooling/maven2/target: jboss-unit-tooling-maven2-1.2.0-SNAPSHOT-sources.jar
-Only in ./tooling/maven2/target: jboss-unit-tooling-maven2-1.2.2.jar
-Only in ./tooling/maven2/target: jboss-unit-tooling-maven2-1.2.2-sources.jar
-diff -r ./tooling/pom.xml /tmp/trunk/tooling/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-14c14
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./tooling/.svn/entries /tmp/trunk/tooling/.svn/entries
-44c44
-< 2009-01-13T10:31:13.000000Z
----
-> 2009-01-13T12:46:20.000000Z
-diff -r ./unit/output/tests/html/__none_-out.txt /tmp/trunk/unit/output/tests/html/__none_-out.txt
-2c2
-< Testcase: testBlah took 0.001 sec
----
-> Testcase: testBlah took 0 sec
-4c4
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.003 sec
-6c6
-< Testcase: testFoo took 0.022 sec
----
-> Testcase: testFoo took 0.021 sec
-12c12
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.022 sec
-66c66
-< Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.018 sec
----
-> Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.014 sec
-diff -r ./unit/output/tests/html/org/jboss/test/unit/sample/package-summary.html /tmp/trunk/unit/output/tests/html/org/jboss/test/unit/sample/package-summary.html
-22c22
-< <td><a href="_TestedClass1.html">TestedClass1</a></td><td>2</td><td>0</td><td>0</td><td>0.023</td>
----
-> <td><a href="_TestedClass1.html">TestedClass1</a></td><td>2</td><td>0</td><td>0</td><td>0.021</td>
-diff -r ./unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1.html /tmp/trunk/unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1.html
-54c54
-< <td><a href="_TestedClass1.html">TestedClass1</a></td><td>2</td><td>0</td><td>0</td><td>0.023</td>
----
-> <td><a href="_TestedClass1.html">TestedClass1</a></td><td>2</td><td>0</td><td>0</td><td>0.021</td>
-63c63
-< <td>testBlah</td><td>Success</td><td></td><td>0.001</td>
----
-> <td>testBlah</td><td>Success</td><td></td><td>0.000</td>
-66c66
-< <td>testFoo</td><td>Success</td><td></td><td>0.022</td>
----
-> <td>testFoo</td><td>Success</td><td></td><td>0.021</td>
-diff -r ./unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1-out.txt /tmp/trunk/unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass1-out.txt
-1c1
-< Testcase: testBlah took 0.001 sec
----
-> Testcase: testBlah took 0 sec
-3c3
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.003 sec
-5c5
-< Testcase: testFoo took 0.022 sec
----
-> Testcase: testFoo took 0.021 sec
-diff -r ./unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass2-out.txt /tmp/trunk/unit/output/tests/html/org/jboss/test/unit/sample/_TestedClass2-out.txt
-2c2
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.022 sec
-diff -r ./unit/output/tests/html/overview-summary.html /tmp/trunk/unit/output/tests/html/overview-summary.html
-21c21
-< <td>11</td><td>3</td><td>1</td><td>63.64%</td><td>0.043</td>
----
-> <td>11</td><td>3</td><td>1</td><td>63.64%</td><td>0.041</td>
-40c40
-< <td><a href="./org/jboss/test/unit/sample/package-summary.html">org.jboss.test.unit.sample</a></td><td>5</td><td>0</td><td>1</td><td>0.043</td>
----
-> <td><a href="./org/jboss/test/unit/sample/package-summary.html">org.jboss.test.unit.sample</a></td><td>5</td><td>0</td><td>1</td><td>0.041</td>
-diff -r ./unit/output/tests/html/TESTS-TestSuites.xml /tmp/trunk/unit/output/tests/html/TESTS-TestSuites.xml
-169c169
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.022 sec
-268c268
-< Testcase: testBlah took 0.001 sec
----
-> Testcase: testBlah took 0 sec
-270c270
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.003 sec
-272c272
-< Testcase: testFoo took 0.022 sec
----
-> Testcase: testFoo took 0.021 sec
-278c278
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.022 sec
-332c332
-< Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.018 sec
----
-> Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.014 sec
-396,398c396,398
-< <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="TestedClass1" package="org.jboss.test.unit.sample" tests="2" time="0.023">
-< <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testBlah" time="0.001"/>
-< <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.022"/>
----
-> <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="TestedClass1" package="org.jboss.test.unit.sample" tests="2" time="0.021">
-> <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testBlah" time="0"/>
-> <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.021"/>
-401c401
-< <system-out><![CDATA[Testcase: testBlah took 0.001 sec
----
-> <system-out><![CDATA[Testcase: testBlah took 0 sec
-403c403
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.003 sec
-405c405
-< Testcase: testFoo took 0.022 sec
----
-> Testcase: testFoo took 0.021 sec
-diff -r ./unit/output/tests/xml/TEST-2.xml /tmp/trunk/unit/output/tests/xml/TEST-2.xml
-57c57
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.022 sec
-diff -r ./unit/output/tests/xml/TEST-3.xml /tmp/trunk/unit/output/tests/xml/TEST-3.xml
-46c46
-< Testcase: testBlah took 0.001 sec
----
-> Testcase: testBlah took 0 sec
-48c48
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.003 sec
-50c50
-< Testcase: testFoo took 0.022 sec
----
-> Testcase: testFoo took 0.021 sec
-56c56
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.022 sec
-110c110
-< Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.018 sec
----
-> Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.014 sec
-diff -r ./unit/output/tests/xml/TEST-5.xml /tmp/trunk/unit/output/tests/xml/TEST-5.xml
-2,4c2,4
-< <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="org.jboss.test.unit.sample.TestedClass1" tests="2" time="0.023">
-< <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testBlah" time="0.001"/>
-< <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.022"/>
----
-> <testsuite errors="0" failures="0" hostname="localhost.localdomain" name="org.jboss.test.unit.sample.TestedClass1" tests="2" time="0.021">
-> <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testBlah" time="0"/>
-> <testcase classname="org.jboss.test.unit.sample.TestedClass1" name="testFoo" time="0.021"/>
-7c7
-< <system-out><![CDATA[Testcase: testBlah took 0.001 sec
----
-> <system-out><![CDATA[Testcase: testBlah took 0 sec
-9c9
-< Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.005 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.003 sec
-11c11
-< Testcase: testFoo took 0.022 sec
----
-> Testcase: testFoo took 0.021 sec
-diff -r ./unit/pom.xml /tmp/trunk/unit/pom.xml
-6c6
-< <version>1.2.2</version>
----
-> <version>1.2.0-SNAPSHOT</version>
-diff -r ./unit/src/main/java/org/jboss/unit/api/pojo/annotations/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/api/pojo/annotations/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-103c103
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-137c137
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-171c171
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-205c205
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/api/pojo/junit/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/api/pojo/junit/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-103c103
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-137c137
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-171c171
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-205c205
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/api/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/api/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/driver/command/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/driver/command/.svn/entries
-35c35
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/driver/impl/composite/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/driver/impl/composite/.svn/entries
-35c35
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/driver/impl/pojo/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/driver/impl/pojo/.svn/entries
-35c35
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-103c103
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-137c137
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-171c171
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-205c205
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/driver/response/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/driver/response/.svn/entries
-35c35
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/driver/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/driver/.svn/entries
-35c35
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-106c106
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-140c140
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-174c174
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-208c208
-< 2009-01-13T10:31:01.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/info/impl/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/info/impl/.svn/entries
-35c35
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-103c103
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-137c137
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/info/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/info/.svn/entries
-38c38
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-72c72
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-106c106
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-140c140
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/report/impl/junit/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/report/impl/junit/.svn/entries
-35c35
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-103c103
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-137c137
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-171c171
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-205c205
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/report/impl/writer/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/report/impl/writer/.svn/entries
-35c35
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/event/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/event/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-103c103
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-137c137
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-171c171
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-205c205
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-239c239
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/composite/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/impl/composite/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/driver/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/impl/driver/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/event/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/impl/event/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/failure/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/impl/failure/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/generic/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/impl/generic/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/pojo/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/impl/pojo/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/impl/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/impl/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-109c109
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-152c152
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-189c189
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/model/composite/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/model/composite/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/model/generic/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/model/generic/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/model/pojo/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/model/pojo/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-103c103
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/model/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/model/.svn/entries
-38c38
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-72c72
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-109c109
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-143c143
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-180c180
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-214c214
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/results/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/results/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-69c69
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/runner/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/runner/.svn/entries
-47c47
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-81c81
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-115c115
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-149c149
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-183c183
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-217c217
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-251c251
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-285c285
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-319c319
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:16.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/spi/pojo/annotations/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/spi/pojo/annotations/.svn/entries
-35c35
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/spi/pojo/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/spi/pojo/.svn/entries
-35c35
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-69c69
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-103c103
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-137c137
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-174c174
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-208c208
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-242c242
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-276c276
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-310c310
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-344c344
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-378c378
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-412c412
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-446c446
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-480c480
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/.svn/entries
-35c35
-< 2009-01-13T10:31:05.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-69c69
-< 2009-01-13T10:31:05.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-109c109
-< 2009-01-13T10:31:05.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-158c158
-< 2009-01-13T10:31:05.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/tooling/filter/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/tooling/filter/.svn/entries
-35c35
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-69c69
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-103c103
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-137c137
-< 2009-01-13T10:31:03.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/tooling/report/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/tooling/report/.svn/entries
-35c35
-< 2009-01-13T10:31:04.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/tooling/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/tooling/.svn/entries
-35c35
-< 2009-01-13T10:31:04.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-69c69
-< 2009-01-13T10:31:04.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-103c103
-< 2009-01-13T10:31:04.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-137c137
-< 2009-01-13T10:31:04.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-174c174
-< 2009-01-13T10:31:04.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-208c208
-< 2009-01-13T10:31:04.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-245c245
-< 2009-01-13T10:31:04.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./unit/src/main/java/org/jboss/unit/util/.svn/entries /tmp/trunk/unit/src/main/java/org/jboss/unit/util/.svn/entries
-35c35
-< 2009-01-13T10:31:05.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-69c69
-< 2009-01-13T10:31:05.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./unit/src/main/resources/org/jboss/unit/report/impl/junit/.svn/entries /tmp/trunk/unit/src/main/resources/org/jboss/unit/report/impl/junit/.svn/entries
-35c35
-< 2009-01-13T10:31:05.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./unit/src/main/resources/org/jboss/unit/runner/model/.svn/entries /tmp/trunk/unit/src/main/resources/org/jboss/unit/runner/model/.svn/entries
-35c35
-< 2009-01-13T10:31:05.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-diff -r ./unit/src/test/java/org/jboss/test/unit/api/.svn/entries /tmp/trunk/unit/src/test/java/org/jboss/test/unit/api/.svn/entries
-35c35
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-diff -r ./unit/src/test/java/org/jboss/test/unit/info/.svn/entries /tmp/trunk/unit/src/test/java/org/jboss/test/unit/info/.svn/entries
-35c35
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-diff -r ./unit/src/test/java/org/jboss/test/unit/pojo/junit/.svn/entries /tmp/trunk/unit/src/test/java/org/jboss/test/unit/pojo/junit/.svn/entries
-35c35
-< 2009-01-13T10:30:58.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-69c69
-< 2009-01-13T10:30:58.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-103c103
-< 2009-01-13T10:30:58.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-137c137
-< 2009-01-13T10:30:58.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-171c171
-< 2009-01-13T10:30:58.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-205c205
-< 2009-01-13T10:30:58.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-239c239
-< 2009-01-13T10:30:58.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-diff -r ./unit/src/test/java/org/jboss/test/unit/pojo/.svn/entries /tmp/trunk/unit/src/test/java/org/jboss/test/unit/pojo/.svn/entries
-35c35
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-69c69
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-103c103
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-137c137
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-171c171
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-205c205
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-239c239
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-273c273
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-307c307
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-341c341
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-375c375
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-409c409
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-443c443
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-477c477
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-511c511
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-545c545
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-579c579
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-613c613
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-647c647
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-681c681
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-715c715
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-749c749
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-783c783
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-820c820
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-854c854
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-888c888
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-922c922
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-956c956
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-990c990
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1024c1024
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1058c1058
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1092c1092
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1126c1126
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1160c1160
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1194c1194
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1228c1228
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1262c1262
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1296c1296
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1330c1330
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1364c1364
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1398c1398
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1432c1432
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1466c1466
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1500c1500
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1534c1534
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1568c1568
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1602c1602
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1636c1636
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1670c1670
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1704c1704
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1738c1738
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1772c1772
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1806c1806
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1840c1840
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1874c1874
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1908c1908
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1942c1942
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-1976c1976
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2010c2010
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2044c2044
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2078c2078
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2112c2112
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2146c2146
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2180c2180
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2214c2214
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2248c2248
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2282c2282
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2316c2316
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2350c2350
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2384c2384
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2418c2418
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2452c2452
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2486c2486
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2520c2520
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2554c2554
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-2588c2588
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-diff -r ./unit/src/test/java/org/jboss/test/unit/report/junit/.svn/entries /tmp/trunk/unit/src/test/java/org/jboss/test/unit/report/junit/.svn/entries
-35c35
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-69c69
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-103c103
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-diff -r ./unit/src/test/java/org/jboss/test/unit/runner/event/.svn/entries /tmp/trunk/unit/src/test/java/org/jboss/test/unit/runner/event/.svn/entries
-35c35
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-69c69
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-diff -r ./unit/src/test/java/org/jboss/test/unit/runner/model/.svn/entries /tmp/trunk/unit/src/test/java/org/jboss/test/unit/runner/model/.svn/entries
-35c35
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-diff -r ./unit/src/test/java/org/jboss/test/unit/runner/.svn/entries /tmp/trunk/unit/src/test/java/org/jboss/test/unit/runner/.svn/entries
-35c35
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-72c72
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-109c109
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-143c143
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-177c177
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-211c211
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-245c245
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-diff -r ./unit/src/test/java/org/jboss/test/unit/sample/.svn/entries /tmp/trunk/unit/src/test/java/org/jboss/test/unit/sample/.svn/entries
-35c35
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-69c69
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-103c103
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-137c137
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-171c171
-< 2009-01-13T10:30:57.000000Z
----
-> 2009-01-13T12:46:14.000000Z
-diff -r ./unit/src/test/java/org/jboss/test/unit/.svn/entries /tmp/trunk/unit/src/test/java/org/jboss/test/unit/.svn/entries
-35c35
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-87c87
-< 2009-01-13T10:30:59.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-diff -r ./unit/src/test/resources/org/jboss/test/unit/runner/model/.svn/entries /tmp/trunk/unit/src/test/resources/org/jboss/test/unit/runner/model/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-69c69
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-diff -r ./unit/src/test/resources/org/jboss/test/unit/sample/.svn/entries /tmp/trunk/unit/src/test/resources/org/jboss/test/unit/sample/.svn/entries
-35c35
-< 2009-01-13T10:31:00.000000Z
----
-> 2009-01-13T12:46:15.000000Z
-diff -r ./unit/.svn/entries /tmp/trunk/unit/.svn/entries
-38c38
-< 2009-01-13T10:31:05.000000Z
----
-> 2009-01-13T12:46:17.000000Z
-Only in /tmp/trunk/unit/target: jboss-unit-1.2.0-SNAPSHOT.jar
-Only in /tmp/trunk/unit/target: jboss-unit-1.2.0-SNAPSHOT-sources.jar
-Only in ./unit/target: jboss-unit-1.2.2.jar
-Only in ./unit/target: jboss-unit-1.2.2-sources.jar
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.api.AssertTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.api.AssertTests.txt
-4c4
-< Tests run: 17, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec
----
-> Tests run: 17, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.info.InfoTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.info.InfoTests.txt
-4c4
-< Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
----
-> Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.027 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.pojo.junit.JUnitPOJOTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.pojo.junit.JUnitPOJOTests.txt
-4c4
-< Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.074 sec
----
-> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.042 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.pojo.TestDriverPOJOTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.pojo.TestDriverPOJOTests.txt
-4c4
-< Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.054 sec
----
-> Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.074 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.pojo.TestHandlerSupportPOJOTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.pojo.TestHandlerSupportPOJOTests.txt
-4c4
-< Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.218 sec
----
-> Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.245 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.runner.CompositeTestRunnerTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.runner.CompositeTestRunnerTests.txt
-4c4
-< Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
----
-> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.runner.event.TestRunnerEventBroadcasterSupportTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.runner.event.TestRunnerEventBroadcasterSupportTests.txt
-4c4
-< Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
----
-> Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.runner.event.TestRunnerLifeCycleFilterTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.runner.event.TestRunnerLifeCycleFilterTests.txt
-4c4
-< Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
----
-> Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.runner.GenericTestRunnerTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.runner.GenericTestRunnerTests.txt
-4c4
-< Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
----
-> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.runner.model.ModelTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.runner.model.ModelTests.txt
-4c4
-< Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 sec
----
-> Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.runner.ParametrizationTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.runner.ParametrizationTests.txt
-4c4
-< Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
----
-> Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.runner.POJOTestRunnerTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.runner.POJOTestRunnerTests.txt
-4c4
-< Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
----
-> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.sample.SampleTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.sample.SampleTests.txt
-4c4
-< Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.065 sec
----
-> Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.125 sec
-diff -r ./unit/target/surefire-reports/org.jboss.test.unit.TestIdTests.txt /tmp/trunk/unit/target/surefire-reports/org.jboss.test.unit.TestIdTests.txt
-4c4
-< Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
----
-> Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.api.AssertTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.api.AssertTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="17" time="0.011" failures="0" name="org.jboss.test.unit.api.AssertTests">
----
-> <testsuite errors="0" skipped="0" tests="17" time="0.012" failures="0" name="org.jboss.test.unit.api.AssertTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-58,59c58,59
-< <testcase time="0.001" name="testBoolean"/>
-< <testcase time="0.001" name="testInteger"/>
----
-> <testcase time="0" name="testBoolean"/>
-> <testcase time="0" name="testInteger"/>
-64,68c64,68
-< <testcase time="0.001" name="testObjectNotSame"/>
-< <testcase time="0" name="testFail"/>
-< <testcase time="0.001" name="testObjectArray"/>
-< <testcase time="0" name="testIntArray"/>
-< <testcase time="0.001" name="testByteArray"/>
----
-> <testcase time="0" name="testObjectNotSame"/>
-> <testcase time="0.001" name="testFail"/>
-> <testcase time="0" name="testObjectArray"/>
-> <testcase time="0.001" name="testIntArray"/>
-> <testcase time="0" name="testByteArray"/>
-73,74c73,74
-< <testcase time="0.001" name="testCharArray"/>
-< <testcase time="0" name="testBooleanArray"/>
----
-> <testcase time="0" name="testCharArray"/>
-> <testcase time="0.001" name="testBooleanArray"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.info.InfoTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.info.InfoTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="4" time="0.007" failures="0" name="org.jboss.test.unit.info.InfoTests">
----
-> <testsuite errors="0" skipped="0" tests="4" time="0.003" failures="0" name="org.jboss.test.unit.info.InfoTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-58,59c58,59
-< <testcase time="0.001" name="testSuiteParameterInfo"/>
-< <testcase time="0.001" name="testParameterInfo"/>
----
-> <testcase time="0" name="testSuiteParameterInfo"/>
-> <testcase time="0" name="testParameterInfo"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.pojo.junit.JUnitPOJOTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.pojo.junit.JUnitPOJOTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="5" time="0.048" failures="0" name="org.jboss.test.unit.pojo.junit.JUnitPOJOTests">
----
-> <testsuite errors="0" skipped="0" tests="5" time="0.036" failures="0" name="org.jboss.test.unit.pojo.junit.JUnitPOJOTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-58,59c58,59
-< <testcase time="0.024" name="test1"/>
-< <testcase time="0.018" name="test2"/>
----
-> <testcase time="0.021" name="test1"/>
-> <testcase time="0.003" name="test2"/>
-61,62c61,62
-< <testcase time="0.001" name="test4"/>
-< <testcase time="0" name="test5"/>
----
-> <testcase time="0.009" name="test4"/>
-> <testcase time="0.001" name="test5"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.pojo.TestDriverPOJOTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.pojo.TestDriverPOJOTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="15" time="0.051" failures="0" name="org.jboss.test.unit.pojo.TestDriverPOJOTests">
----
-> <testsuite errors="0" skipped="0" tests="15" time="0.069" failures="0" name="org.jboss.test.unit.pojo.TestDriverPOJOTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-60c60
-< <testcase time="0.012" name="testLifeCycleSequence"/>
----
-> <testcase time="0.014" name="testLifeCycleSequence"/>
-62c62
-< <testcase time="0.002" name="testMethodAndMethodArgumentAnnotatedWithParameter"/>
----
-> <testcase time="0.001" name="testMethodAndMethodArgumentAnnotatedWithParameter"/>
-64c64
-< <testcase time="0.001" name="testClassWithoutDefaultConstructor"/>
----
-> <testcase time="0" name="testClassWithoutDefaultConstructor"/>
-67,68c67,68
-< <testcase time="0.004" name="testTestMethodHavingArgumentsAnnotatedWithParameter"/>
-< <testcase time="0.002" name="testMethodAnnotatedWithTest"/>
----
-> <testcase time="0.014" name="testTestMethodHavingArgumentsAnnotatedWithParameter"/>
-> <testcase time="0.004" name="testMethodAnnotatedWithTest"/>
-70,71c70,71
-< <testcase time="0.001" name="testClassWithoutAnnotations"/>
-< <testcase time="0" name="testAbstractClassAnnotatedWithTest"/>
----
-> <testcase time="0" name="testClassWithoutAnnotations"/>
-> <testcase time="0.004" name="testAbstractClassAnnotatedWithTest"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.pojo.TestHandlerSupportPOJOTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.pojo.TestHandlerSupportPOJOTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="15" time="0.206" failures="0" name="org.jboss.test.unit.pojo.TestHandlerSupportPOJOTests">
----
-> <testsuite errors="0" skipped="0" tests="15" time="0.234" failures="0" name="org.jboss.test.unit.pojo.TestHandlerSupportPOJOTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-59,63c59,63
-< <testcase time="0.011" name="testMethodAnnotatedWithTag"/>
-< <testcase time="0.05" name="testLifeCycleSequence"/>
-< <testcase time="0.009" name="testMethodAnnotatedWithCreate"/>
-< <testcase time="0.005" name="testMethodAndMethodArgumentAnnotatedWithParameter"/>
-< <testcase time="0.006" name="testClassWithFailingConstructor"/>
----
-> <testcase time="0.014" name="testMethodAnnotatedWithTag"/>
-> <testcase time="0.06" name="testLifeCycleSequence"/>
-> <testcase time="0.014" name="testMethodAnnotatedWithCreate"/>
-> <testcase time="0.006" name="testMethodAndMethodArgumentAnnotatedWithParameter"/>
-> <testcase time="0.005" name="testClassWithFailingConstructor"/>
-65,68c65,68
-< <testcase time="0.019" name="testMethodAnnotatedWithParameter"/>
-< <testcase time="0.006" name="testTestMethodAnnotatedWithConflictingAnnotations"/>
-< <testcase time="0.013" name="testTestMethodHavingArgumentsAnnotatedWithParameter"/>
-< <testcase time="0.011" name="testMethodAnnotatedWithTest"/>
----
-> <testcase time="0.036" name="testMethodAnnotatedWithParameter"/>
-> <testcase time="0.004" name="testTestMethodAnnotatedWithConflictingAnnotations"/>
-> <testcase time="0.009" name="testTestMethodHavingArgumentsAnnotatedWithParameter"/>
-> <testcase time="0.006" name="testMethodAnnotatedWithTest"/>
-70c70
-< <testcase time="0.001" name="testClassWithoutAnnotations"/>
----
-> <testcase time="0" name="testClassWithoutAnnotations"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.CompositeTestRunnerTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.CompositeTestRunnerTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="5" time="0.013" failures="0" name="org.jboss.test.unit.runner.CompositeTestRunnerTests">
----
-> <testsuite errors="0" skipped="0" tests="5" time="0.019" failures="0" name="org.jboss.test.unit.runner.CompositeTestRunnerTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-59c59
-< <testcase time="0.002" name="testComposeWithRuntimeException1"/>
----
-> <testcase time="0" name="testComposeWithRuntimeException1"/>
-61c61
-< <testcase time="0" name="testComposeWithRuntimeError1"/>
----
-> <testcase time="0.001" name="testComposeWithRuntimeError1"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.event.TestRunnerEventBroadcasterSupportTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.event.TestRunnerEventBroadcasterSupportTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="8" time="0.011" failures="0" name="org.jboss.test.unit.runner.event.TestRunnerEventBroadcasterSupportTests">
----
-> <testsuite errors="0" skipped="0" tests="8" time="0.006" failures="0" name="org.jboss.test.unit.runner.event.TestRunnerEventBroadcasterSupportTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-58c58
-< <testcase time="0" name="testAddNullListener"/>
----
-> <testcase time="0.001" name="testAddNullListener"/>
-60c60
-< <testcase time="0.001" name="testBroadcastNullEvent"/>
----
-> <testcase time="0" name="testBroadcastNullEvent"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.event.TestRunnerLifeCycleFilterTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.event.TestRunnerLifeCycleFilterTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="1" time="0.001" failures="0" name="org.jboss.test.unit.runner.event.TestRunnerLifeCycleFilterTests">
----
-> <testsuite errors="0" skipped="0" tests="1" time="0.002" failures="0" name="org.jboss.test.unit.runner.event.TestRunnerLifeCycleFilterTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-58c58
-< <testcase time="0" name="testBasic"/>
----
-> <testcase time="0.001" name="testBasic"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.GenericTestRunnerTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.GenericTestRunnerTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="9" time="0.015" failures="0" name="org.jboss.test.unit.runner.GenericTestRunnerTests">
----
-> <testsuite errors="0" skipped="0" tests="9" time="0.02" failures="0" name="org.jboss.test.unit.runner.GenericTestRunnerTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-58c58
-< <testcase time="0.006" name="testProperties1"/>
----
-> <testcase time="0.008" name="testProperties1"/>
-60c60
-< <testcase time="0.001" name="testProperties3"/>
----
-> <testcase time="0" name="testProperties3"/>
-62,64c62,64
-< <testcase time="0" name="testParametrizationOverride"/>
-< <testcase time="0.001" name="testNoTestCase"/>
-< <testcase time="0" name="testOneTestCase"/>
----
-> <testcase time="0.001" name="testParametrizationOverride"/>
-> <testcase time="0" name="testNoTestCase"/>
-> <testcase time="0.001" name="testOneTestCase"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.model.ModelTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.model.ModelTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="3" time="0.018" failures="0" name="org.jboss.test.unit.runner.model.ModelTests">
----
-> <testsuite errors="0" skipped="0" tests="3" time="0.03" failures="0" name="org.jboss.test.unit.runner.model.ModelTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-58,59c58,59
-< <testcase time="0.009" name="testBuildFromXML2"/>
-< <testcase time="0.006" name="testBuildFromXML1"/>
----
-> <testcase time="0.007" name="testBuildFromXML2"/>
-> <testcase time="0.021" name="testBuildFromXML1"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.ParametrizationTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.ParametrizationTests.xml
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-59c59
-< <testcase time="0" name="test2"/>
----
-> <testcase time="0.001" name="test2"/>
-61c61
-< <testcase time="0" name="test4"/>
----
-> <testcase time="0.001" name="test4"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.POJOTestRunnerTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.POJOTestRunnerTests.xml
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-58c58
-< <testcase time="0.006" name="testPOJO1_1"/>
----
-> <testcase time="0.005" name="testPOJO1_1"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.TestDriverRunnerTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.runner.TestDriverRunnerTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="16" time="0.057" failures="0" name="org.jboss.test.unit.runner.TestDriverRunnerTests">
----
-> <testsuite errors="0" skipped="0" tests="16" time="0.054" failures="0" name="org.jboss.test.unit.runner.TestDriverRunnerTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-58c58
-< <testcase time="0.015" name="testDestroyThrowsError"/>
----
-> <testcase time="0.028" name="testDestroyThrowsError"/>
-60,61c60,61
-< <testcase time="0.001" name="testInit"/>
-< <testcase time="0.001" name="testInitThrowsDriverException"/>
----
-> <testcase time="0" name="testInit"/>
-> <testcase time="0" name="testInitThrowsDriverException"/>
-63,65c63,65
-< <testcase time="0.001" name="testInitThrowsError"/>
-< <testcase time="0.002" name="testEvents1"/>
-< <testcase time="0.001" name="testInvokeTestSuite"/>
----
-> <testcase time="0" name="testInitThrowsError"/>
-> <testcase time="0.001" name="testEvents1"/>
-> <testcase time="0" name="testInvokeTestSuite"/>
-67c67
-< <testcase time="0.012" name="testInvokeTestCaseWithParameters2"/>
----
-> <testcase time="0.011" name="testInvokeTestCaseWithParameters2"/>
-70,72c70,72
-< <testcase time="0.001" name="testTestDriverInvokeTestCaseReturnsAnEndTestResponse"/>
-< <testcase time="0.001" name="testTestDriverInvokeTestCaseReturnsAFailureResponse"/>
-< <testcase time="0" name="testTestDriverInvokeTestCaseThrowsRuntimeException"/>
----
-> <testcase time="0" name="testTestDriverInvokeTestCaseReturnsAnEndTestResponse"/>
-> <testcase time="0" name="testTestDriverInvokeTestCaseReturnsAFailureResponse"/>
-> <testcase time="0.001" name="testTestDriverInvokeTestCaseThrowsRuntimeException"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.sample.SampleTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.sample.SampleTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="2" time="2.063" failures="0" name="org.jboss.test.unit.sample.SampleTests">
----
-> <testsuite errors="0" skipped="0" tests="2" time="2.12" failures="0" name="org.jboss.test.unit.sample.SampleTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-58,59c58,59
-< <testcase time="0.275" name="test1"/>
-< <testcase time="1.787" name="test2"/>
----
-> <testcase time="0.459" name="test1"/>
-> <testcase time="1.659" name="test2"/>
-diff -r ./unit/target/surefire-reports/TEST-org.jboss.test.unit.TestIdTests.xml /tmp/trunk/unit/target/surefire-reports/TEST-org.jboss.test.unit.TestIdTests.xml
-2c2
-< <testsuite errors="0" skipped="0" tests="6" time="0.004" failures="0" name="org.jboss.test.unit.TestIdTests">
----
-> <testsuite errors="0" skipped="0" tests="6" time="0.02" failures="0" name="org.jboss.test.unit.TestIdTests">
-16c16
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="user.dir"/>
----
-> <property value="/tmp/trunk/unit" name="user.dir"/>
-19c19
-< <property value="/home/theute/tmp/modules/jbossunit/unit" name="basedir"/>
----
-> <property value="/tmp/trunk/unit" name="basedir"/>
-60c60
-< <testcase time="0.001" name="testRange"/>
----
-> <testcase time="0.002" name="testRange"/>
-62c62
-< <testcase time="0" name="testCtor"/>
----
-> <testcase time="0.001" name="testCtor"/>
17 years, 3 months
JBoss Portal SVN: r12492 - in modules/cms/trunk/cms-jackrabbit/src: main/java/org/jboss/portal/cms/security and 1 other directories.
by portal-commits@lists.jboss.org
Author: sohil.shah(a)jboss.com
Date: 2009-01-13 22:17:52 -0500 (Tue, 13 Jan 2009)
New Revision: 12492
Modified:
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/impl/interceptors/ACLInterceptor.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/security/AuthorizationProviderImpl.java
modules/cms/trunk/cms-jackrabbit/src/test/resources/jboss-unit.xml
Log:
some transaction refactoring
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/impl/interceptors/ACLInterceptor.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/impl/interceptors/ACLInterceptor.java 2009-01-13 21:34:32 UTC (rev 12491)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/impl/interceptors/ACLInterceptor.java 2009-01-14 03:17:52 UTC (rev 12492)
@@ -167,7 +167,7 @@
{
this.cmsSessionFactory = cmsSessionFactory;
}
-
+ //-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
/**
*
*/
@@ -218,7 +218,160 @@
return invocation.invokeNext();
}
}
+
+ /**
+ *
+ */
+ public void start() throws Exception
+ {
+ Session session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).openSession();
+ Transaction tx = session.beginTransaction();
+ try
+ {
+ log.info("AuthorizationManager initialized=" + this.authorizationManager);
+
+ if (this.jndiName != null)
+ {
+ this.jndiBinding = new JNDI.Binding(jndiName, this);
+ this.jndiBinding.bind();
+ }
+
+
+ this.initRoleModule();
+
+ //check and see if cms permissions exist...if not, boot it with the default policy
+ //specified in the configuration
+ if (!this.isBootRequired())
+ {
+ return;
+ }
+
+ //go ahead and boot the cms access policy with default policy specified in the configuration
+ this.storeBootPolicy();
+
+ tx.commit();
+ }
+ catch(Exception e)
+ {
+ log.error(this, e);
+
+ if(tx != null)
+ {
+ tx.rollback();
+ }
+
+ throw e;
+ }
+ finally
+ {
+ if(session != null && session.isOpen())
+ {
+ session.close();
+ }
+ }
+ }
+ /** @throws Exception */
+ public void stop() throws Exception
+ {
+ if (this.jndiBinding != null)
+ {
+ this.jndiBinding.unbind();
+ this.jndiBinding = null;
+ }
+ }
+
+ /**
+ * This turns off acl security only for a particular thread. This is used by system level operations that need to
+ * integrate with the CMS
+ * <p/>
+ * Example is: the workflow daemon that publishes a content as live when a manager approves it. Without turning this
+ * off, the daemon thread is running in Anonymous mode which obviously does not have the rights to publish the
+ * content
+ */
+ private static ThreadLocal turnOff = new ThreadLocal();
+
+ public static void turnOff()
+ {
+ ACLInterceptor.turnOff.set(new Boolean(true));
+ }
+
+ public static void turnOn()
+ {
+ ACLInterceptor.turnOff.set(null);
+ }
+ //------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ private void initRoleModule() throws Exception
+ {
+ try
+ {
+ roleModule = (RoleModule)new InitialContext().lookup("java:portal/RoleModule");
+ }
+ catch (NamingException e)
+ {
+ log.error("Cannot obtain RoleModule from JNDI: ", e);
+ throw e;
+ }
+ }
+
+ private void storeBootPolicy() throws Exception
+ {
+ InputStream is = null;
+ try
+ {
+ //process the specified defaultPolicy
+ is = new ByteArrayInputStream(this.defaultPolicy.getBytes());
+ Document document = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(is);
+
+ NodeList criteria = document.getElementsByTagName("criteria");
+ if (criteria != null)
+ {
+ for (int i = 0; i < criteria.getLength(); i++)
+ {
+ Element criteriaElem = (Element)criteria.item(i);
+ String name = criteriaElem.getAttribute("name");
+ String value = criteriaElem.getAttribute("value");
+
+ //permission setup
+ NodeList permissions = criteriaElem.getElementsByTagName("permission");
+ if (permissions != null)
+ {
+ Session session = null;
+ Transaction tx = null;
+ Collection parsedPermissions = this.parseDefaultPermissions(permissions);
+ try
+ {
+ session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).getCurrentSession();
+ tx = session.beginTransaction();
+ for (Iterator itr = parsedPermissions.iterator(); itr.hasNext();)
+ {
+ Permission permission = (Permission)itr.next();
+ permission.addCriteria(new Criteria(name, value));
+ Set securityBinding = new HashSet();
+ securityBinding.add(permission);
+ this.authorizationManager.getProvider().setSecurityBindings(null, securityBinding);
+ }
+ }
+ catch (Exception e)
+ {
+ if(tx != null)
+ {
+ tx.rollback();
+ }
+ }
+ }
+ }
+ }
+ }
+ finally
+ {
+ if (is != null)
+ {
+ is.close();
+ }
+ }
+ }
+
/**
* Filters any files/folders based on the user's access. The filter is applied to folders/files returned by invoking
* a CMS command
@@ -302,106 +455,8 @@
return filteredResponse;
}
- /**
- *
- */
- public void start() throws Exception
- {
- log.info("AuthorizationManager initialized=" + this.authorizationManager);
+
- if (this.jndiName != null)
- {
- this.jndiBinding = new JNDI.Binding(jndiName, this);
- this.jndiBinding.bind();
- }
-
-
- try
- {
- roleModule = (RoleModule)new InitialContext().lookup("java:portal/RoleModule");
- }
- catch (NamingException e)
- {
- log.error("Cannot obtain RoleModule from JNDI: ", e);
- throw e;
- }
-
- //check and see if cms permissions exist...if not, boot it with the default policy
- //specified in the configuration
- if (!this.isBootRequired())
- {
- return;
- }
-
- //go ahead and boot the cms access policy with default policy specified in the configuration
- InputStream is = null;
- try
- {
- //process the specified defaultPolicy
- is = new ByteArrayInputStream(this.defaultPolicy.getBytes());
- Document document = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(is);
-
- NodeList criteria = document.getElementsByTagName("criteria");
- if (criteria != null)
- {
- for (int i = 0; i < criteria.getLength(); i++)
- {
- Element criteriaElem = (Element)criteria.item(i);
- String name = criteriaElem.getAttribute("name");
- String value = criteriaElem.getAttribute("value");
-
- //permission setup
- NodeList permissions = criteriaElem.getElementsByTagName("permission");
- if (permissions != null)
- {
- Session session = null;
- Transaction tx = null;
- Collection parsedPermissions = this.parseDefaultPermissions(permissions);
- try
- {
- session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).openSession();
- tx = session.beginTransaction();
- for (Iterator itr = parsedPermissions.iterator(); itr.hasNext();)
- {
- Permission permission = (Permission)itr.next();
- permission.addCriteria(new Criteria(name, value));
- Set securityBinding = new HashSet();
- securityBinding.add(permission);
- this.authorizationManager.getProvider().setSecurityBindings(null, securityBinding);
- }
- tx.commit();
- }
- catch (Exception e)
- {
- tx.rollback();
- }
- finally
- {
- HibernateUtil.closeSession(session);
- }
- }
- }
- }
- }
- finally
- {
- if (is != null)
- {
- is.close();
- }
- }
- }
-
- /** @throws Exception */
- public void stop() throws Exception
- {
- if (this.jndiBinding != null)
- {
- this.jndiBinding.unbind();
- this.jndiBinding = null;
- }
- }
-
/**
* Parses and produces Permission objects for the default policy
*
@@ -450,30 +505,16 @@
* @return
*/
private Role getRole(String name) throws Exception
- {
- Role role = null;
-
- //since this is at app start up and not on user thread...need to create a transaction context.
- InitialContext context = new InitialContext();
- SessionFactory sessionFactory = (SessionFactory)context.lookup(this.identitySessionFactory);
- Session session = sessionFactory.openSession();
- Transaction tx = session.beginTransaction();
- try
- {
- role = this.roleModule.findRoleByName(name);
- tx.commit();
- }
- catch (Exception e)
- {
- tx.rollback();
- role = null;
- }
- finally
- {
- session.close();
- }
-
- return role;
+ {
+ try
+ {
+ return this.roleModule.findRoleByName(name);
+ }
+ catch(Exception e)
+ {
+ log.debug(this, e);
+ return null;
+ }
}
/**
@@ -486,7 +527,7 @@
boolean bootRequired = false;
String hsqlQuery = "select count(permission) from org.jboss.portal.cms.security.Permission as permission";
- Session session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).openSession();
+ Session session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).getCurrentSession();
Transaction tx = session.beginTransaction();
try
{
@@ -496,37 +537,15 @@
{
bootRequired = true;
}
- tx.commit();
}
catch(Exception e)
{
- tx.rollback();
- }
- finally
- {
- HibernateUtil.closeSession(session);
- }
+ if(tx != null)
+ {
+ tx.rollback();
+ }
+ }
return bootRequired;
- }
-
- /**
- * This turns off acl security only for a particular thread. This is used by system level operations that need to
- * integrate with the CMS
- * <p/>
- * Example is: the workflow daemon that publishes a content as live when a manager approves it. Without turning this
- * off, the daemon thread is running in Anonymous mode which obviously does not have the rights to publish the
- * content
- */
- private static ThreadLocal turnOff = new ThreadLocal();
-
- public static void turnOff()
- {
- ACLInterceptor.turnOff.set(new Boolean(true));
- }
-
- public static void turnOn()
- {
- ACLInterceptor.turnOff.set(null);
- }
+ }
}
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/security/AuthorizationProviderImpl.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/security/AuthorizationProviderImpl.java 2009-01-13 21:34:32 UTC (rev 12491)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/security/AuthorizationProviderImpl.java 2009-01-14 03:17:52 UTC (rev 12492)
@@ -234,27 +234,23 @@
if (adminUser == null)
{
- Session session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).openSession();
+ Session session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).getCurrentSession();
Transaction tx = session.beginTransaction();
try
{
adminUser = this.userModule.findUserByUserName(this.cmsRootUserName);
- tx.commit();
}
catch(Exception e)
{
- tx.rollback();
+ if(tx != null)
+ {
+ tx.rollback();
+ }
throw new RuntimeException(e);
- }
- finally
- {
- HibernateUtil.closeSession(session);
- }
+ }
}
return adminUser;
-
-
}
/**
@@ -426,8 +422,7 @@
*/
private Collection findPermissionsByUser(String userId)
{
- Session session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).openSession();
- Transaction tx = session.beginTransaction();
+ Session session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).getCurrentSession();
try
{
Collection permissions = new HashSet();
@@ -482,20 +477,13 @@
}
}
}
-
- tx.commit();
-
return permissions;
}
catch (Exception e)
{
- tx.rollback();
+ log.error(this, e);
throw new RuntimeException(e);
- }
- finally
- {
- HibernateUtil.closeSession(session);
- }
+ }
}
/**
@@ -510,8 +498,7 @@
String lookupByRole = "SELECT permission from Permission permission JOIN permission.roleAssoc role WHERE role.roleId=?";
- Session session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).openSession();
- Transaction tx = session.beginTransaction();
+ Session session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).getCurrentSession();
try
{
// perform lookup by explicitly specified users
@@ -519,19 +506,13 @@
roleQuery.setString(0, roleId);
roleQuery.setCacheable(true);
permissions.addAll(roleQuery.list());
-
- tx.commit();
}
catch (Exception e)
{
- tx.rollback();
+ log.error(this, e);
throw new RuntimeException(e);
}
- finally
- {
- HibernateUtil.closeSession(session);
- }
-
+
return permissions;
}
@@ -547,8 +528,7 @@
String lookupByCriteria = "SELECT permission from Permission permission JOIN permission.criteria criteria WHERE criteria.name=? AND criteria.value=?";
- Session session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).openSession();
- Transaction tx = session.beginTransaction();
+ Session session = HibernateUtil.getSessionFactory(this.cmsSessionFactory).getCurrentSession();
try
{
// perform lookup by explicitly specified users
@@ -557,18 +537,11 @@
criteriaQuery.setString(1, criteria.getValue());
criteriaQuery.setCacheable(true);
permissions.addAll(criteriaQuery.list());
-
- tx.commit();
}
catch (Exception e)
{
- tx.rollback();
throw new RuntimeException(e);
- }
- finally
- {
- HibernateUtil.closeSession(session);
- }
+ }
return permissions;
}
Modified: modules/cms/trunk/cms-jackrabbit/src/test/resources/jboss-unit.xml
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/test/resources/jboss-unit.xml 2009-01-13 21:34:32 UTC (rev 12491)
+++ modules/cms/trunk/cms-jackrabbit/src/test/resources/jboss-unit.xml 2009-01-14 03:17:52 UTC (rev 12492)
@@ -6,10 +6,12 @@
<pojo>
<parameter name="datasources" value="datasources.xml"/>
<parameter name="dataSourceName">
- <value>hsqldb</value>
+ <value>hsqldb</value>
+ <!--
<value>oracle10g</value>
<value>mysql5</value>
<value>postgresql8</value>
+ -->
</parameter>
<parameter name="hibernateConfig" value="hibernates.xml"/>
<test >
@@ -77,10 +79,12 @@
<pojo>
<parameter name="datasources" value="datasources.xml"/>
<parameter name="dataSourceName">
- <value>hsqldb</value>
+ <value>hsqldb</value>
+ <!--
<value>oracle10g</value>
<value>mysql5</value>
- <value>postgresql8</value>
+ <value>postgresql8</value>
+ -->
</parameter>
<parameter name="hibernateConfig" value="hibernates.xml"/>
<parameter name="standardIdentityConfig" value="standardidentity-config.xml"/>
@@ -103,13 +107,16 @@
<parameter name="datasources" value="datasources.xml"/>
<parameter name="dataSourceName">
<value>hsqldb</value>
+ <!--
<value>oracle10g</value>
<value>mysql5</value>
<value>postgresql8</value>
+ -->
</parameter>
<parameter name="hibernateConfig" value="hibernates.xml"/>
<parameter name="standardIdentityConfig" value="standardidentity-config.xml"/>
<parameter name="identityConfig" value="db-config.xml"/>
+
<test >
<class name="org.jboss.portal.cms.test.workflow.TestApprovedPublish"/>
</test>
17 years, 3 months
JBoss Portal SVN: r12491 - in modules/cms/trunk/cms-jackrabbit/src: main/java/org/jboss/portal/cms/hibernate/state and 2 other directories.
by portal-commits@lists.jboss.org
Author: sohil.shah(a)jboss.com
Date: 2009-01-13 16:34:32 -0500 (Tue, 13 Jan 2009)
New Revision: 12491
Removed:
modules/cms/trunk/cms-jackrabbit/src/test/java/org/jboss/portal/cms/test/blobs/TestBlobPortability.java
Modified:
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/CMSEntry.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/HibernateStore.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/MaterializedBlobType.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/RepositoryEntry.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/VersionEntry.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/JBossCachePersistenceManager.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/VersionBinVal.java
modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/WSPBinVal.java
modules/cms/trunk/cms-jackrabbit/src/test/java/org/jboss/portal/cms/test/blobs/TestBlobPortabilityTestCase.java
modules/cms/trunk/cms-jackrabbit/src/test/resources/blobs.hbm.xml
modules/cms/trunk/cms-jackrabbit/src/test/resources/domain.hbm.xml
modules/cms/trunk/cms-jackrabbit/src/test/resources/hibernate.cfg.xml
modules/cms/trunk/cms-jackrabbit/src/test/resources/jboss-unit.xml
Log:
backing code (testsuite finally passed in single/multi-db mode without any special postgresqlness)
looking at more optimization
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/CMSEntry.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/CMSEntry.java 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/CMSEntry.java 2009-01-13 21:34:32 UTC (rev 12491)
@@ -33,7 +33,7 @@
private Integer key;
private String path;
private String name;
- private byte[] data;
+ private java.sql.Blob data;
private long lastmod;
private long length;
@@ -41,7 +41,7 @@
{
}
- public CMSEntry(String path, String name, byte[] data, long lastmod, long length)
+ public CMSEntry(String path, String name, java.sql.Blob data, long lastmod, long length)
{
this.key = null;
this.path = path;
@@ -81,12 +81,12 @@
this.name = name;
}
- public byte[] getData()
+ public java.sql.Blob getData()
{
return data;
}
- public void setData(byte[] data)
+ public void setData(java.sql.Blob data)
{
this.data = data;
}
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/HibernateStore.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/HibernateStore.java 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/HibernateStore.java 2009-01-13 21:34:32 UTC (rev 12491)
@@ -868,9 +868,11 @@
List rs = query.list();
//
Iterator iter = rs.iterator();
- byte[] blob = (byte[])iter.next();
+ //byte[] blob = (byte[])iter.next();
+ //return new ByteArrayInputStream(blob);
- return new ByteArrayInputStream(blob);
+ java.sql.Blob blob = (java.sql.Blob)iter.next();
+ return blob.getBinaryStream();
}
catch (Exception e)
{
@@ -946,11 +948,14 @@
throw new Exception("No such Entry " + name);
}
- versionEntry.setData(IOTools.getBytes(in));
+ //versionEntry.setData(IOTools.getBytes(in));
+ versionEntry.setData(Hibernate.createBlob(in));
+
versionEntry.setLastmod(System.currentTimeMillis());
versionEntry.setLength(length);
session.save(versionEntry);
+ session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.cmsClassName))
{
@@ -963,11 +968,14 @@
throw new Exception("No such Entry " + name);
}
- cmsEntry.setData(IOTools.getBytes(in));
+ //cmsEntry.setData(IOTools.getBytes(in));
+ cmsEntry.setData(Hibernate.createBlob(in));
+
cmsEntry.setLastmod(System.currentTimeMillis());
cmsEntry.setLength(length);
session.save(cmsEntry);
+ session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.repositoryClassName))
{
@@ -980,11 +988,14 @@
throw new Exception("No such Entry " + name);
}
- repoEntry.setData(IOTools.getBytes(in));
+ //repoEntry.setData(IOTools.getBytes(in));
+ repoEntry.setData(Hibernate.createBlob(in));
+
repoEntry.setLastmod(System.currentTimeMillis());
repoEntry.setLength(length);
session.save(repoEntry);
+ session.flush();
}
}
catch (Exception e)
@@ -1008,18 +1019,27 @@
in = new FileInputStream(f);
if (schemaObjectPrefix.equals(HibernateStoreConstants.versionClassName))
{
- VersionEntry versionEntry = new VersionEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ //VersionEntry versionEntry = new VersionEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ VersionEntry versionEntry = new VersionEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
+
session.save(versionEntry);
+ session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.cmsClassName))
{
- CMSEntry cmsEntry = new CMSEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ //CMSEntry cmsEntry = new CMSEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ CMSEntry cmsEntry = new CMSEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
+
session.save(cmsEntry);
+ session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.repositoryClassName))
{
- RepositoryEntry repoEntry = new RepositoryEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ //RepositoryEntry repoEntry = new RepositoryEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ RepositoryEntry repoEntry = new RepositoryEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
+
session.save(repoEntry);
+ session.flush();
}
}
catch (Exception e)
@@ -1149,11 +1169,14 @@
throw new Exception("No such Entry " + name);
}
- versionEntry.setData(IOTools.getBytes(in));
+ //versionEntry.setData(IOTools.getBytes(in));
+ versionEntry.setData(Hibernate.createBlob(in));
+
versionEntry.setLastmod(System.currentTimeMillis());
versionEntry.setLength(length);
session.save(versionEntry);
+ session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.cmsClassName))
{
@@ -1166,11 +1189,14 @@
throw new Exception("No such Entry " + name);
}
- cmsEntry.setData(IOTools.getBytes(in));
+ //cmsEntry.setData(IOTools.getBytes(in));
+ cmsEntry.setData(Hibernate.createBlob(in));
+
cmsEntry.setLastmod(System.currentTimeMillis());
cmsEntry.setLength(length);
session.save(cmsEntry);
+ session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.repositoryClassName))
{
@@ -1183,11 +1209,15 @@
throw new Exception("No such Entry " + name);
}
- repoEntry.setData(IOTools.getBytes(in));
+ //repoEntry.setData(IOTools.getBytes(in));
+ repoEntry.setData(Hibernate.createBlob(in));
+
+
repoEntry.setLastmod(System.currentTimeMillis());
repoEntry.setLength(length);
session.save(repoEntry);
+ session.flush();
}
}
catch (Exception e)
@@ -1211,18 +1241,27 @@
in = IOTools.safeBufferedWrapper(new FileInputStream(f));
if (schemaObjectPrefix.equals(HibernateStoreConstants.versionClassName))
{
- VersionEntry versionEntry = new VersionEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ //VersionEntry versionEntry = new VersionEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ VersionEntry versionEntry = new VersionEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
+
session.save(versionEntry);
+ session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.cmsClassName))
{
- CMSEntry cmsEntry = new CMSEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ //CMSEntry cmsEntry = new CMSEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ CMSEntry cmsEntry = new CMSEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
+
session.save(cmsEntry);
+ session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.repositoryClassName))
{
- RepositoryEntry repoEntry = new RepositoryEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ //RepositoryEntry repoEntry = new RepositoryEntry(parentDir, name, IOTools.getBytes(in), System.currentTimeMillis(), length);
+ RepositoryEntry repoEntry = new RepositoryEntry(parentDir, name, Hibernate.createBlob(in), System.currentTimeMillis(), length);
+
session.save(repoEntry);
+ session.flush();
}
}
catch (Exception e)
@@ -1469,6 +1508,7 @@
VersionEntry versionEntry = new VersionEntry(parentDir, name, null, System.currentTimeMillis(), 0);
session.save(versionEntry);
+ session.flush();
}
else if (schemaObjectPrefix.equals(HibernateStoreConstants.cmsClassName))
{
@@ -1481,6 +1521,7 @@
RepositoryEntry repoEntry = new RepositoryEntry(parentDir, name, null, System.currentTimeMillis(), 0);
session.save(repoEntry);
+ session.flush();
}
}
catch (Exception e)
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/MaterializedBlobType.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/MaterializedBlobType.java 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/MaterializedBlobType.java 2009-01-13 21:34:32 UTC (rev 12491)
@@ -9,25 +9,31 @@
*
* @author Steve Ebersole
*/
-public class MaterializedBlobType extends AbstractBynaryType {
+public class MaterializedBlobType extends AbstractBynaryType
+{
- public int sqlType() {
+ public int sqlType()
+ {
return Types.BLOB;
}
- public String getName() {
+ public String getName()
+ {
return "materialized-blob";
}
- public Class getReturnedClass() {
+ public Class getReturnedClass()
+ {
return byte[].class;
}
- protected Object toExternalFormat(byte[] bytes) {
+ protected Object toExternalFormat(byte[] bytes)
+ {
return bytes;
}
- protected byte[] toInternalFormat(Object bytes) {
+ protected byte[] toInternalFormat(Object bytes)
+ {
return ( byte[] ) bytes;
}
}
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/RepositoryEntry.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/RepositoryEntry.java 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/RepositoryEntry.java 2009-01-13 21:34:32 UTC (rev 12491)
@@ -33,7 +33,7 @@
private Integer key;
private String path;
private String name;
- private byte[] data;
+ private java.sql.Blob data;
private long lastmod;
private long length;
@@ -41,7 +41,7 @@
{
}
- public RepositoryEntry(String path, String name, byte[] data, long lastmod, long length)
+ public RepositoryEntry(String path, String name, java.sql.Blob data, long lastmod, long length)
{
this.key = null;
this.path = path;
@@ -81,12 +81,12 @@
this.name = name;
}
- public byte[] getData()
+ public java.sql.Blob getData()
{
return data;
}
- public void setData(byte[] data)
+ public void setData(java.sql.Blob data)
{
this.data = data;
}
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/VersionEntry.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/VersionEntry.java 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/VersionEntry.java 2009-01-13 21:34:32 UTC (rev 12491)
@@ -33,7 +33,7 @@
private Integer key;
private String path;
private String name;
- private byte[] data;
+ private java.sql.Blob data;
private long lastmod;
private long length;
@@ -41,7 +41,7 @@
{
}
- public VersionEntry(String path, String name, byte[] data, long lastmod, long length)
+ public VersionEntry(String path, String name, java.sql.Blob data, long lastmod, long length)
{
this.key = null;
this.path = path;
@@ -81,12 +81,12 @@
this.name = name;
}
- public byte[] getData()
+ public java.sql.Blob getData()
{
return data;
}
- public void setData(byte[] data)
+ public void setData(java.sql.Blob data)
{
this.data = data;
}
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/JBossCachePersistenceManager.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/JBossCachePersistenceManager.java 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/JBossCachePersistenceManager.java 2009-01-13 21:34:32 UTC (rev 12491)
@@ -1456,16 +1456,18 @@
.list();
Iterator iter = rs.iterator();
+ /*InputStream is = null;
byte[] blob = (byte[])iter.next();
+ is = new ByteArrayInputStream(blob);*/
/**
* This needs to be done this way due to issues with a combination of Postgresql driver handling blobs and Jackrabbit 1.4
*
* Its fine for: hsqldb, mysql5, and oracle10g
*/
- InputStream is = null;
-
- /*InputStream blobStream = blob.getBinaryStream();
+ InputStream is = null;
+ java.sql.Blob blob = (java.sql.Blob)iter.next();
+ InputStream blobStream = blob.getBinaryStream();
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte[] buffer = new byte[1024]; //using a 1K buffer
int bytesRead = -1;
@@ -1473,12 +1475,10 @@
{
bos.write(buffer, 0, bytesRead);
bos.flush();
- }
+ }
+ try{blobStream.close();}catch(Exception e){}
+ is = new ByteArrayInputStream(bos.toByteArray());
- try{blobStream.close();}catch(Exception e){}*/
-
- is = new ByteArrayInputStream(blob);
-
return is;
}
catch (Exception e)
@@ -1524,7 +1524,10 @@
throw new Exception("No such Node: " + blobId);
}
versionNode.setId(blobId);
- versionNode.setData(IOTools.getBytes(in));
+
+ //versionNode.setData(IOTools.getBytes(in));
+ versionNode.setData(Hibernate.createBlob(in));
+ session.flush();
}
else if (schemaObjectPrefix
.equalsIgnoreCase(HibernateStoreConstants.wspPrefix))
@@ -1534,9 +1537,12 @@
if (wspNode == null)
{
throw new Exception("No such Node: " + blobId);
- }
+ }
wspNode.setId(blobId);
- wspNode.setData(IOTools.getBytes(in));
+
+ //wspNode.setData(IOTools.getBytes(in));
+ wspNode.setData(Hibernate.createBlob(in));
+ session.flush();
}
}
catch (Exception e)
@@ -1559,15 +1565,22 @@
if (schemaObjectPrefix
.equalsIgnoreCase(HibernateStoreConstants.versionPrefix))
{
+ //VersionBinVal versionNode = new VersionBinVal(blobId,
+ // IOTools.getBytes(in));
VersionBinVal versionNode = new VersionBinVal(blobId,
- IOTools.getBytes(in));
+ Hibernate.createBlob(in));
+
session.save(versionNode);
+ session.flush();
}
else if (schemaObjectPrefix
.equalsIgnoreCase(HibernateStoreConstants.wspPrefix))
{
- WSPBinVal wspNode = new WSPBinVal(blobId, IOTools.getBytes(in));
+ //WSPBinVal wspNode = new WSPBinVal(blobId, IOTools.getBytes(in));
+ WSPBinVal wspNode = new WSPBinVal(blobId, Hibernate.createBlob(in));
+
session.save(wspNode);
+ session.flush();
}
}
catch (Exception e)
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/VersionBinVal.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/VersionBinVal.java 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/VersionBinVal.java 2009-01-13 21:34:32 UTC (rev 12491)
@@ -32,13 +32,13 @@
private Integer key;
private String id;
- private byte[] data;
+ private java.sql.Blob data;
public VersionBinVal()
{
}
- public VersionBinVal(String id, byte[] data)
+ public VersionBinVal(String id, java.sql.Blob data)
{
this.key = null;
this.id = id;
@@ -65,12 +65,12 @@
this.id = id;
}
- public byte[] getData()
+ public java.sql.Blob getData()
{
return data;
}
- public void setData(byte[] data)
+ public void setData(java.sql.Blob data)
{
this.data = data;
}
Modified: modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/WSPBinVal.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/WSPBinVal.java 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/main/java/org/jboss/portal/cms/hibernate/state/WSPBinVal.java 2009-01-13 21:34:32 UTC (rev 12491)
@@ -32,13 +32,13 @@
private Integer key;
private String id;
- private byte[] data;
+ private java.sql.Blob data;
public WSPBinVal()
{
}
- public WSPBinVal(String id, byte[] data)
+ public WSPBinVal(String id, java.sql.Blob data)
{
this.key = null;
this.id = id;
@@ -65,12 +65,12 @@
this.id = id;
}
- public byte[] getData()
+ public java.sql.Blob getData()
{
return data;
}
- public void setData(byte[] data)
+ public void setData(java.sql.Blob data)
{
this.data = data;
}
Deleted: modules/cms/trunk/cms-jackrabbit/src/test/java/org/jboss/portal/cms/test/blobs/TestBlobPortability.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/test/java/org/jboss/portal/cms/test/blobs/TestBlobPortability.java 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/test/java/org/jboss/portal/cms/test/blobs/TestBlobPortability.java 2009-01-13 21:34:32 UTC (rev 12491)
@@ -1,84 +0,0 @@
-/*
-* JBoss, a division of Red Hat
-* Copyright 2006, Red Hat Middleware, LLC, 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.portal.cms.test.blobs;
-
-import java.io.Serializable;
-import javax.naming.InitialContext;
-
-import org.apache.log4j.Logger;
-
-import org.hibernate.Session;
-import org.hibernate.SessionFactory;
-import org.hibernate.Transaction;
-
-import org.jboss.unit.api.pojo.annotations.Test;
-import org.jboss.unit.mc.api.annotations.Bootstrap;
-
-import org.jboss.portal.cms.test.AbstractCMSTestCase;
-
-/**
- * @author <a href="mailto:sshah@redhat.com">Sohil Shah</a>
- */
-@Bootstrap(beanName = "TestCase", resourceName="/jboss-beans-blobs.xml")
-public class TestBlobPortability extends AbstractCMSTestCase
-{
- private static Logger log = Logger.getLogger(TestBlobPortability.class);
-
- @Test
- public void testCreateFile() throws Exception
- {
- Session session = null;
- Transaction tx = null;
- try
- {
- SessionFactory sessionFactory = (SessionFactory)new InitialContext().lookup("java:/SessionFactory");
- session = sessionFactory.openSession();
- tx = session.beginTransaction();
-
- CMSFile cmsFile = new CMSFile();
- cmsFile.setName("testName");
- cmsFile.setContent("123456789".getBytes());
-
- Serializable uid = session.save(cmsFile);
-
- log.info("-------------------------------------------");
- log.info("New File Id="+uid);
-
- tx.commit();
- }
- catch(Exception e)
- {
- if(tx != null)
- {
- tx.rollback();
- }
- throw e;
- }
- finally
- {
- if(session != null)
- {
- session.close();
- }
- }
- }
-}
Modified: modules/cms/trunk/cms-jackrabbit/src/test/java/org/jboss/portal/cms/test/blobs/TestBlobPortabilityTestCase.java
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/test/java/org/jboss/portal/cms/test/blobs/TestBlobPortabilityTestCase.java 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/test/java/org/jboss/portal/cms/test/blobs/TestBlobPortabilityTestCase.java 2009-01-13 21:34:32 UTC (rev 12491)
@@ -23,8 +23,6 @@
import java.io.Serializable;
-import javax.naming.InitialContext;
-
import junit.framework.TestCase;
import org.hibernate.SessionFactory;
@@ -32,6 +30,11 @@
import org.hibernate.cfg.Configuration;
import org.hibernate.Transaction;
+import org.hibernate.dialect.PostgreSQLDialect;
+import org.hibernate.dialect.MySQL5InnoDBDialect;
+import org.hibernate.dialect.Oracle10gDialect;
+import org.hibernate.dialect.Oracle9iDialect;
+
/**
* @author <a href="mailto:sshah@redhat.com">Sohil Shah</a>
*/
@@ -52,6 +55,17 @@
public void testCreateFile() throws Exception
{
+ PostgreSQLDialect psqldialect = new PostgreSQLDialect();
+ Oracle9iDialect oracle9idialect = new Oracle9iDialect();
+ Oracle10gDialect oracle10gdialect = new Oracle10gDialect();
+ MySQL5InnoDBDialect mysqldialect = new MySQL5InnoDBDialect();
+ System.out.println("-----------------------------------------");
+ System.out.println("PostGres Proper LOB Support="+psqldialect.supportsExpectedLobUsagePattern());
+ System.out.println("Oracle10g Proper LOB Support="+oracle9idialect.supportsExpectedLobUsagePattern());
+ System.out.println("Oracle9i Proper LOB Support="+oracle10gdialect.supportsExpectedLobUsagePattern());
+ System.out.println("Mysql Proper LOB Support="+mysqldialect.supportsExpectedLobUsagePattern());
+ System.out.println("-----------------------------------------");
+
Session session = null;
Transaction tx = null;
try
@@ -64,6 +78,7 @@
tx = session.beginTransaction();
Serializable uid = session.save(cmsFile);
+ session.flush();
System.out.println("-------------------------------------------");
System.out.println("New File Id="+uid);
Modified: modules/cms/trunk/cms-jackrabbit/src/test/resources/blobs.hbm.xml
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/test/resources/blobs.hbm.xml 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/test/resources/blobs.hbm.xml 2009-01-13 21:34:32 UTC (rev 12491)
@@ -42,9 +42,16 @@
<property
name="content"
column="content"
- type="binary"
+ type="org.jboss.portal.cms.hibernate.MaterializedBlobType"
not-null="true"
- length="1000000000"
- />
+ />
+ <!--
+ <property
+ name="content"
+ column="content"
+ type="blob"
+ not-null="true"
+ />
+ -->
</class>
</hibernate-mapping>
\ No newline at end of file
Modified: modules/cms/trunk/cms-jackrabbit/src/test/resources/domain.hbm.xml
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/test/resources/domain.hbm.xml 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/test/resources/domain.hbm.xml 2009-01-13 21:34:32 UTC (rev 12491)
@@ -41,7 +41,7 @@
<property
name="data"
column="BINVAL_DATA"
- type="org.jboss.portal.cms.hibernate.MaterializedBlobType"
+ type="blob"
length="100000000"
not-null="true"/>
</class>
@@ -117,7 +117,7 @@
<property
name="data"
column="BINVAL_DATA"
- type="org.jboss.portal.cms.hibernate.MaterializedBlobType"
+ type="blob"
length="100000000"
not-null="true"/>
</class>
@@ -198,7 +198,7 @@
length="245"/>
<property name="data"
column="FSENTRY_DATA"
- type="org.jboss.portal.cms.hibernate.MaterializedBlobType"
+ type="blob"
length="100000000"
not-null="false"/>
<property name="lastmod"
@@ -230,7 +230,7 @@
length="245"/>
<property name="data"
column="FSENTRY_DATA"
- type="org.jboss.portal.cms.hibernate.MaterializedBlobType"
+ type="blob"
length="100000000"
not-null="false"/>
<property name="lastmod"
@@ -262,7 +262,7 @@
length="245"/>
<property name="data"
column="FSENTRY_DATA"
- type="org.jboss.portal.cms.hibernate.MaterializedBlobType"
+ type="blob"
length="100000000"
not-null="false"/>
<property name="lastmod"
Modified: modules/cms/trunk/cms-jackrabbit/src/test/resources/hibernate.cfg.xml
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/test/resources/hibernate.cfg.xml 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/test/resources/hibernate.cfg.xml 2009-01-13 21:34:32 UTC (rev 12491)
@@ -14,22 +14,21 @@
<property name="hibernate.connection.password">portalpassword</property>
-->
-
+ <!--
<property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="hibernate.connection.url">jdbc:oracle:thin:@localhost:1521:orcl</property>
<property name="hibernate.connection.username">portal</property>
<property name="hibernate.connection.password">portalpassword</property>
+ -->
- <!--
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.url">jdbc:postgresql:jbossportal</property>
<property name="hibernate.connection.username">portal</property>
<property name="hibernate.connection.password">portalpassword</property>
- -->
<!-- other hibernate properties -->
<property name="show_sql">true</property>
- <property name="hbm2ddl.auto">update</property>
+ <property name="hbm2ddl.auto">create-drop</property>
<mapping resource="blobs.hbm.xml"/>
Modified: modules/cms/trunk/cms-jackrabbit/src/test/resources/jboss-unit.xml
===================================================================
--- modules/cms/trunk/cms-jackrabbit/src/test/resources/jboss-unit.xml 2009-01-13 20:50:30 UTC (rev 12490)
+++ modules/cms/trunk/cms-jackrabbit/src/test/resources/jboss-unit.xml 2009-01-13 21:34:32 UTC (rev 12491)
@@ -5,18 +5,16 @@
xsi:schemaLocation="urn:jboss:jboss-unit:1.0 jboss-unit_1_0.xsd">
<pojo>
<parameter name="datasources" value="datasources.xml"/>
- <parameter name="dataSourceName">
- <value>hsqldb</value>
- <!--
+ <parameter name="dataSourceName">
+ <value>hsqldb</value>
<value>oracle10g</value>
- <value>mysql5</value>
+ <value>mysql5</value>
<value>postgresql8</value>
- -->
</parameter>
- <parameter name="hibernateConfig" value="hibernates.xml"/>
+ <parameter name="hibernateConfig" value="hibernates.xml"/>
<test >
<class name="org.jboss.portal.cms.test.commands.TestFileArchiveUpload"/>
- </test>
+ </test>
<test >
<class name="org.jboss.portal.cms.test.commands.TestFileCopy"/>
</test>
@@ -79,12 +77,10 @@
<pojo>
<parameter name="datasources" value="datasources.xml"/>
<parameter name="dataSourceName">
- <value>hsqldb</value>
- <!--
+ <value>hsqldb</value>
<value>oracle10g</value>
<value>mysql5</value>
- <value>postgresql8</value>
- -->
+ <value>postgresql8</value>
</parameter>
<parameter name="hibernateConfig" value="hibernates.xml"/>
<parameter name="standardIdentityConfig" value="standardidentity-config.xml"/>
@@ -105,13 +101,11 @@
<pojo>
<parameter name="datasources" value="datasources.xml"/>
- <parameter name="dataSourceName">
+ <parameter name="dataSourceName">
<value>hsqldb</value>
- <!--
<value>oracle10g</value>
<value>mysql5</value>
<value>postgresql8</value>
- -->
</parameter>
<parameter name="hibernateConfig" value="hibernates.xml"/>
<parameter name="standardIdentityConfig" value="standardidentity-config.xml"/>
@@ -126,4 +120,4 @@
<class name="org.jboss.portal.cms.test.workflow.TestWorkflowEnvironment"/>
</test>
</pojo>
-</jboss-unit>
+</jboss-unit>
\ No newline at end of file
17 years, 3 months