[JBoss-dev] [JBoss JIRA] Commented: (HIBERNATE-3) PropertyNotFoundException on runtime HAR deployment

2005-02-23 Thread Chris Buckley (JIRA)
 [ 
http://jira.jboss.com/jira/browse/HIBERNATE-3?page=comments#action_12315680 ]
 
Chris Buckley commented on HIBERNATE-3:
---

I have the same issue, jboss4.0.1sp1, jdk1.5.0_01 -or jdk1.4.2_04.  Same issue 
server restart the .har deploys correct, hot deploy fails.

 PropertyNotFoundException on runtime HAR deployment
 ---

  Key: HIBERNATE-3
  URL: http://jira.jboss.com/jira/browse/HIBERNATE-3
  Project: Hibernate
 Type: Bug
 Reporter: SourceForge User
 Assignee: Steve Ebersole



 SourceForge Submitter: treinar .
 OS: Linux 2.4.22-36mdkenterprise (i386)
 JVM: 1.4.2_06-b03
 I have a HAR archive, with one class: Pesticide.class
 and its hibernate mapping file. Pesticide class has to
 properties: id and name (with getter/setter methods). A
 META-INF/hibernate-service.xml is also provided.
 When deploying a HAR archive when JBoss runs, the
 deployment fails. The following Exception is thrown:
 net.sf.hibernate.PropertyNotFoundException: Could not
 find a setter for property name in class
 no.planteforsk.pvmdb.persistent.Pesticide
 However, when JBoss is restarted, the HAR deploys fine. 
 The Exception is thrown in
 net.sf.hibernate.property.BasicPropertyAccessor, in the
 method getSetter. The cause of the exception is that no
 match between set method (setName) and property (name)
 is found in method setterMethod.
 I inserted a few debug outputs in
 BasicPropertyAccessor, and it turns out that when the
 HAR is deployed at runtime, the method setName in
 Pesticide is wrongly assumed to take no parameters,
 (methods[i].getParameterTypes().length returns 0). When
 jboss is restarted, and the deployment takes place on
 the same HAR file, setName is assumed to take 1
 parameter, which of course is correct.
 I'm not sure if this is a Java error or a JBoss error,
 or even a Hibernate error, but maybe you do. It does
 concern JBoss, however.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (HIBERNATE-7) CLONE -PropertyNotFoundException on runtime HAR deployment

2005-02-23 Thread Chris Buckley (JIRA)
CLONE -PropertyNotFoundException on runtime HAR deployment
--

 Key: HIBERNATE-7
 URL: http://jira.jboss.com/jira/browse/HIBERNATE-7
 Project: Hibernate
Type: Bug
Reporter: Chris Buckley
 Assigned to: Steve Ebersole 


SourceForge Submitter: treinar .
OS: Linux 2.4.22-36mdkenterprise (i386)
JVM: 1.4.2_06-b03

I have a HAR archive, with one class: Pesticide.class
and its hibernate mapping file. Pesticide class has to
properties: id and name (with getter/setter methods). A
META-INF/hibernate-service.xml is also provided.

When deploying a HAR archive when JBoss runs, the
deployment fails. The following Exception is thrown:
net.sf.hibernate.PropertyNotFoundException: Could not
find a setter for property name in class
no.planteforsk.pvmdb.persistent.Pesticide

However, when JBoss is restarted, the HAR deploys fine. 

The Exception is thrown in
net.sf.hibernate.property.BasicPropertyAccessor, in the
method getSetter. The cause of the exception is that no
match between set method (setName) and property (name)
is found in method setterMethod.

I inserted a few debug outputs in
BasicPropertyAccessor, and it turns out that when the
HAR is deployed at runtime, the method setName in
Pesticide is wrongly assumed to take no parameters,
(methods[i].getParameterTypes().length returns 0). When
jboss is restarted, and the deployment takes place on
the same HAR file, setName is assumed to take 1
parameter, which of course is correct.

I'm not sure if this is a Java error or a JBoss error,
or even a Hibernate error, but maybe you do. It does
concern JBoss, however.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (HIBERNATE-7) CLONE -PropertyNotFoundException on runtime HAR deployment

2005-02-23 Thread Chris Buckley (JIRA)
 [ 
http://jira.jboss.com/jira/browse/HIBERNATE-7?page=comments#action_12315682 ]
 
Chris Buckley commented on HIBERNATE-7:
---

I have the same issue Windows XP, jboss4.0.1sp1, jdk1.5.0_01 -or- jdk1.4.2_04.  
A server restart deploys the .har correct hot deploy throws error above.

 CLONE -PropertyNotFoundException on runtime HAR deployment
 --

  Key: HIBERNATE-7
  URL: http://jira.jboss.com/jira/browse/HIBERNATE-7
  Project: Hibernate
 Type: Bug
 Reporter: Chris Buckley
 Assignee: Steve Ebersole



 SourceForge Submitter: treinar .
 OS: Linux 2.4.22-36mdkenterprise (i386)
 JVM: 1.4.2_06-b03
 I have a HAR archive, with one class: Pesticide.class
 and its hibernate mapping file. Pesticide class has to
 properties: id and name (with getter/setter methods). A
 META-INF/hibernate-service.xml is also provided.
 When deploying a HAR archive when JBoss runs, the
 deployment fails. The following Exception is thrown:
 net.sf.hibernate.PropertyNotFoundException: Could not
 find a setter for property name in class
 no.planteforsk.pvmdb.persistent.Pesticide
 However, when JBoss is restarted, the HAR deploys fine. 
 The Exception is thrown in
 net.sf.hibernate.property.BasicPropertyAccessor, in the
 method getSetter. The cause of the exception is that no
 match between set method (setName) and property (name)
 is found in method setterMethod.
 I inserted a few debug outputs in
 BasicPropertyAccessor, and it turns out that when the
 HAR is deployed at runtime, the method setName in
 Pesticide is wrongly assumed to take no parameters,
 (methods[i].getParameterTypes().length returns 0). When
 jboss is restarted, and the deployment takes place on
 the same HAR file, setName is assumed to take 1
 parameter, which of course is correct.
 I'm not sure if this is a Java error or a JBoss error,
 or even a Hibernate error, but maybe you do. It does
 concern JBoss, however.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (HIBERNATE-7) CLONE -PropertyNotFoundException on runtime HAR deployment

2005-02-23 Thread Chris Buckley (JIRA)
 [ 
http://jira.jboss.com/jira/browse/HIBERNATE-7?page=comments#action_12315686 ]
 
Chris Buckley commented on HIBERNATE-7:
---

hibernate-service.xml
?xml version=1.0 encoding=UTF-8?
!DOCTYPE server

server
   
mbean code=org.jboss.hibernate.jmx.Hibernate 
name=jboss.har:service=HibernateBossService
attribute name=DatasourceNamejava:/MySqlDS/attribute
attribute 
name=SessionFactoryNamejava:/BossSessionFactory/attribute
attribute 
name=Dialectnet.sf.hibernate.dialect.MySQLDialect/attribute
attribute 
name=CacheProviderClassnet.sf.hibernate.cache.HashtableCacheProvider/attribute
attribute name=Hbm2ddlAutocreate-drop/attribute
attribute name=ShowSqlEnabledtrue/attribute

dependsjboss.jca:service=DataSourceBinding,name=MySqlDS/depends
/mbean   

/server

Manufacturer.hbm.xml
?xml version=1.0?

!DOCTYPE hibernate-mapping PUBLIC
-//Hibernate/Hibernate Mapping DTD 2.0//EN 
http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd;

hibernate-mapping
class
name=com.umarble.model.Manufacturer
table=MANUFACTURER
dynamic-update=false
dynamic-insert=false


jcs-cache usage=read-write /

id
name=id
type=java.lang.Integer

column
name=MANUFACTURER_ID 
sql-type=integer
/
generator class=assigned
/generator
/id

!--
To add non XDoclet property mappings, create a file named
hibernate-properties-Manufacturer.xml
containing the additional properties and place it in your merge dir.
--

/class

/hibernate-mapping

Manufacturer.java
package com.umarble.model;

import java.io.Serializable;

/**
 * @author cbuckley
 * @hibernate.class table = MANUFACTURER
 * @hibernate.jcs-cache usage=read-write
 */
public class Manufacturer implements Serializable {

private Integer id;

/**
 * @return Returns the id.
 * 
 * @hibernate.id column = MANUFACTURER_ID generator-class = assigned
 * @hibernate.column name = MANUFACTURER_ID sql-type = integer
 */
public Integer getId(){
return this.id;
}

public void setId(Integer id){
this.id = id;
}
}






 CLONE -PropertyNotFoundException on runtime HAR deployment
 --

  Key: HIBERNATE-7
  URL: http://jira.jboss.com/jira/browse/HIBERNATE-7
  Project: Hibernate
 Type: Bug
 Reporter: Chris Buckley
 Assignee: Steve Ebersole



 SourceForge Submitter: treinar .
 OS: Linux 2.4.22-36mdkenterprise (i386)
 JVM: 1.4.2_06-b03
 I have a HAR archive, with one class: Pesticide.class
 and its hibernate mapping file. Pesticide class has to
 properties: id and name (with getter/setter methods). A
 META-INF/hibernate-service.xml is also provided.
 When deploying a HAR archive when JBoss runs, the
 deployment fails. The following Exception is thrown:
 net.sf.hibernate.PropertyNotFoundException: Could not
 find a setter for property name in class
 no.planteforsk.pvmdb.persistent.Pesticide
 However, when JBoss is restarted, the HAR deploys fine. 
 The Exception is thrown in
 net.sf.hibernate.property.BasicPropertyAccessor, in the
 method getSetter. The cause of the exception is that no
 match between set method (setName) and property (name)
 is found in method setterMethod.
 I inserted a few debug outputs in
 BasicPropertyAccessor, and it turns out that when the
 HAR is deployed at runtime, the method setName in
 Pesticide is wrongly assumed to take no parameters,
 (methods[i].getParameterTypes().length returns 0). When
 jboss is restarted, and the deployment takes place on
 the same HAR file, setName is assumed to take 1
 parameter, which of course is correct.
 I'm not sure if this is a Java error or a JBoss error,
 or even a Hibernate error, but maybe you do. It does
 concern JBoss, however.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.jboss.com/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] testsuite - jboss-3.2 and jdk1.5 beta2 problems

2004-08-03 Thread Chris Kimpton
Hi,

I am trying to compile jboss-3.2 with jdk1.5 beta2 - but it fails
like this:


 [exec] _buildmagic:modules:most:

 [exec]
==
 [exec] ==  Executing 'most' in module 'common'...
 [exec] ==

 [exec] _buildmagic:init:

 [exec] configure:

 [exec] _default:task-init:

 [exec] xdoclet-task-classpath-check:

 [exec] init:

 [exec] _buildmagic:build-bypass-checker:

 [exec] _buildmagic:build-bypass-notice:

 [exec] _buildmagic:build-bypass-check:

 [exec] jars:

 [exec] _buildmagic:init:

 [exec] init:

 [exec] _buildmagic:mbean-bypass-checker:

 [exec] _default:compile-mbean-sources:
 [exec] [mkdir] Created dir:
/home/jbossci/JBossTestPack/test/jboss-3.2/common/output/gen-src
 [exec] [execmodules] (XDocletMain.start   47  )
Running mbeaninterface/
 [exec] [execmodules] (TemplateSubTask.engineStarted   791 )
Generating output for
'org.jboss.util.property.jmx.SystemPropertyClassValue' using template
file
'jar:file:/home/jbossci/JBossTestPack/test/jboss-3.2/thirdparty/xdoclet/xdoclet/lib/xdoclet-jmx-module-1.2.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
 [exec] [touch] Creating
/home/jbossci/JBossTestPack/test/jboss-3.2/common/output/mbean-marker

 [exec] _default:compile-classes:
 [exec] [mkdir] Created dir:
/home/jbossci/JBossTestPack/test/jboss-3.2/common/output/classes
 [exec] [javac] Compiling 221 source files to
/home/jbossci/JBossTestPack/test/jboss-3.2/common/output/classes
 [exec] [execmodules] javac: target release 1.2 conflicts with
default source release 1.5

 [exec] BUILD FAILED
 [exec]
/home/jbossci/JBossTestPack/test/jboss-3.2/tools/etc/buildmagic/buildmagic.ent:406:
Compile failed; see the compiler error output for details.



From the wiki - there are no mention of compile issues.

http://www.jboss.org/wiki/Wiki.jsp?page=RunJBossWithJ2SDK1.5Beta

Any tips?

Thanks in advance,
Chris

=




__
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail


---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


RE: [JBoss-dev] jboss-head Build Failed

2004-05-06 Thread Chris Kimpton
Hi,

--- Scott M Stark [EMAIL PROTECTED] wrote:
 The window for waiting for updates before doing a compile seems a
 bit
 small. I have built
 jboss-head from a clean checkout on seperate machines so it appears
 this
 failure is due to
 building after incomplete checkins.
  

Ok - it was set to 5mins between checks for updates and then a wait
for a 5mins quietperiod.

I've now set this to 10mins between checks and a 20min quietperiod.

Chris

=





__
Do you Yahoo!?
Win a $20,000 Career Makeover at Yahoo! HotJobs  
http://hotjobs.sweepstakes.yahoo.com/careermakeover 


---
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson  Lucent use to 
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (HEAD/linux1/1.4.1_06) [AUTOMATED]

2004-02-02 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan 27 15:24:45 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: /home/jbossci/jbossci2/jboss-head/common/output/gen-src
[execmodules] (XDocletMain.start   47  ) Running mbeaninterface/
[execmodules] (TemplateSubTask.engineStarted   789 ) Generating output for 
'org.jboss.util.property.jmx.SystemPropertyClassValue' using template file 
'jar:file:/home/jbossci/jbossci2/jboss-head/thirdparty/xdoclet-xdoclet/lib/xdoclet-jmx-module-jb4.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
[execmodules] INFO:Some classes refer to other classes that were not found among 
the sources or on the classpath.
[execmodules]  (Perhaps the referred class doesn't exist? Hasn't been 
generated yet?)
[execmodules]  The referring classes do not import any fully qualified classes 
matching these classes.
[execmodules]  However, since no packages are imported, xjavadoc has assumed 
that the referred classes
[execmodules]  belong to the same package as the referring class. The classes 
are:
[execmodules] 
/home/jbossci/jbossci2/jboss-head/common/src/main/org/jboss/net/protocol/URLListerBase.java
 -- URLFilter qualified to org.jboss.net.protocol.URLFilter

compile-classes:
[mkdir] Created dir: /home/jbossci/jbossci2/jboss-head/common/output/classes
[javac] Compiling 211 source files to 
/home/jbossci/jbossci2/jboss-head/common/output/classes
[execmodules] 1 warning

compile-etc:
[mkdir] Created dir: /home/jbossci/jbossci2/jboss-head/common/output/etc
 [copy] Copying 1 file to /home/jbossci/jbossci2/jboss-head/common/output/etc

compile:
[mkdir] Created dir: /home/jbossci/jbossci2/jboss-head/common/output/lib
  [jar] Building jar: 
/home/jbossci/jbossci2/jboss-head/common/output/lib/jboss-common.jar
  [jar] Building jar: 
/home/jbossci/jbossci2/jboss-head/common/output/lib/jboss-common-client.jar
  [jar] Building jar: 
/home/jbossci/jbossci2/jboss-head/common/output/lib/testsuite-support.jar
[touch] Creating /home/jbossci/jbossci2/jboss-head/common/output/build-marker

most:

==
==  Finished with 'most' in module 'common'.
==


_module-common-most:
[mkdir] Created dir: /home/jbossci/jbossci2/jboss-head/build/output/testbuild/lib
 [copy] Copying 1 file to 
/home/jbossci/jbossci2/jboss-head/build/output/testbuild/lib
[mkdir] Created dir: 
/home/jbossci/jbossci2/jboss-head/build/output/testbuild/client
 [copy] Copying 1 file to 
/home/jbossci/jbossci2/jboss-head/build/output/testbuild/client
 [copy] Copying 6 files to 
/home/jbossci/jbossci2/jboss-head/build/output/testbuild/lib

==
==  Executing 'most' in module 'jmx'...
==

_buildmagic:init:

configure:
Overriding previous definition of reference to xdoclet.task.classpath

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

output:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: /home/jbossci/jbossci2/jboss-head/jmx/output/gen-src

_default:compile-classes:
[mkdir] Created dir: /home/jbossci/jbossci2/jboss-head/jmx/output/classes
[mkdir] Created dir: /home/jbossci/jbossci2/jboss-head/jmx/output/gen/classes
   [depend] Deleted 0 out of date files in 0 seconds
[javac] Compiling 615 source files to 
/home/jbossci/jbossci2/jboss-head/jmx/output/classes
/home/jbossci/jbossci2/jboss-head/jmx/src/main/org/jboss/mx/modelmbean/ModelMBeanInvoker.java:111:
 cannot resolve symbol
symbol  : method setDelayedRegistration (boolean)
location: class org.jboss.mx.modelmbean.ModelMBeanInvoker
  setDelayedRegistration(true);
  ^
/home/jbossci/jbossci2/jboss-head/jmx/src/main/org/jboss/mx/modelmbean/XMBean.java:361:
 
configureInterceptorStack(javax.management.modelmbean.ModelMBeanInfo,javax.management.MBeanServer)
 in org.jboss.mx.modelmbean.ModelMBeanInvoker cannot be applied to 

[JBoss-dev] JBoss Shutdown Failed! JBoss (HEAD/winxp/1.4.1_06) [AUTOMATED]

2004-02-02 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Feb  3 01:12:31 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
javax.naming.NamingException: Could not dereference object.  Root exception is 
javax.naming.CommunicationException.  Root exception is 
java.lang.ClassNotFoundException: org.jboss.jmx.adaptor.rmi.RMIAdaptor (no security 
manager: RMI class loader disabled)
at sun.rmi.server.LoaderHandler.loadProxyClass(LoaderHandler.java:521)
at java.rmi.server.RMIClassLoader$2.loadProxyClass(RMIClassLoader.java:639)
at java.rmi.server.RMIClassLoader.loadProxyClass(RMIClassLoader.java:309)
at 
sun.rmi.server.MarshalInputStream.resolveProxyClass(MarshalInputStream.java:241)
at java.io.ObjectInputStream.readProxyDesc(ObjectInputStream.java:1469)
at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1432)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1626)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
at java.rmi.MarshalledObject.get(MarshalledObject.java:135)
at org.jnp.interfaces.MarshalledValuePair.get(MarshalledValuePair.java:30)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:550)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:507)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at org.jnp.interfaces.NamingContext.resolveLink(NamingContext.java:964)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:613)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:507)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at org.jboss.Shutdown.main(Shutdown.java:182)
Exception in thread main JBOSS SHUTDOWN FAILED

===
Tue Feb  3 01:12:31 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_06
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_06-b01)
Java HotSpot(TM) Client VM (build 1.4.1_06-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1678 / 1759 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.2_03) [AUTOMATED]

2004-01-26 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan 27 02:29:43 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1759



Successful tests:  1678

Errors:61

Failures:  20





[time of test: 2004-01-27.01-40 GMT]
[java.version: 1.4.2_03]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_03-b02]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_03/logtests/testresults/reports/html//2004-01-27.01-40
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Tue Jan 27 02:29:43 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_03
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_03-b02)
Java HotSpot(TM) Client VM (build 1.4.2_03-b02, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1649 / 1731 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/linux1/1.4.1_06) [AUTOMATED]

2004-01-26 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan 27 02:32:59 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1731



Successful tests:  1649

Errors:63

Failures:  19





[time of test: 2004-01-27.00-42 GMT]
[java.version: 1.4.1_06]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_06-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-28.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.1_06/logtests/testresults/reports/html//2004-01-27.00-42
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: no protocol: 
/home/jbossci/jbossci2/jboss-head-test/testsuite/output/lib/oldxerces.war
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Tue Jan 27 02:32:59 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.1_06
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_06-b01)
Java HotSpot(TM) Client VM (build 1.4.1_06-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1492 / 1570 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_06) [AUTOMATED]

2004-01-22 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan 23 01:18:11 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1570



Successful tests:  1492

Errors:59

Failures:  19





[time of test: 2004-01-23.00-32 GMT]
[java.version: 1.4.1_06]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_06-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_06/logtests/testresults/reports/html//2004-01-23.00-32
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Fri Jan 23 01:18:11 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_06
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_06-b01)
Java HotSpot(TM) Client VM (build 1.4.1_06-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 94 % ( 1489 / 1569 ) - come on - pull your finger out. JBoss (HEAD/winxp/1.4.2_03) [AUTOMATED]

2004-01-22 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan 23 02:28:15 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1569



Successful tests:  1489

Errors:59

Failures:  21





[time of test: 2004-01-23.01-38 GMT]
[java.version: 1.4.2_03]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_03-b02]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_03/logtests/testresults/reports/html//2004-01-23.01-38
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d

===
Fri Jan 23 02:28:15 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_03
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_03-b02)
Java HotSpot(TM) Client VM (build 1.4.2_03-b02, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 84 % ( 1235 / 1466 ) - come on - pull your finger out. JBoss (HEAD/winxp/1.4.1_06) [AUTOMATED]

2004-01-21 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Thu Jan 22 03:20:06 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1466



Successful tests:  1235

Errors:212

Failures:  19





[time of test: 2004-01-22.00-32 GMT]
[java.version: 1.4.1_06]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_06-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_06/logtests/testresults/reports/html//2004-01-22.00-32
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Thu Jan 22 03:20:06 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_06
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_06-b01)
Java HotSpot(TM) Client VM (build 1.4.1_06-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1678 / 1758 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.2_03) [AUTOMATED]

2004-01-21 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Thu Jan 22 04:35:27 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1758



Successful tests:  1678

Errors:60

Failures:  20





[time of test: 2004-01-22.03-40 GMT]
[java.version: 1.4.2_03]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_03-b02]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_03/logtests/testresults/reports/html//2004-01-22.03-40
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d

===
Thu Jan 22 04:35:27 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_03
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_03-b02)
Java HotSpot(TM) Client VM (build 1.4.2_03-b02, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Test Job Failed to Complete Successfully (or we gave up on it...)! JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-20 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan 20 07:10:23 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
[junit] TEST org.jboss.test.security.test.SRPUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.security.test.SecurityProxyUnitTestCase
[junit] TEST org.jboss.test.security.test.SecurityProxyUnitTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.security.test.XMLLoginModulesUnitTestCase
[junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed: 53.967 sec

tests-standard-stress:
[junit] Running org.jboss.test.bank.test.BankEJB20StressTestCase
[junit] TEST org.jboss.test.bank.test.BankEJB20StressTestCase FAILED (timeout)
[junit] Running org.jboss.test.bank.test.BankStressTestCase
[junit] TEST org.jboss.test.bank.test.BankStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.cache.stress.LocalStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 81.068 sec
[junit] Running org.jboss.test.cache.stress.ReadWriteLockWithUpgradeStressTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 1.886 sec
[junit] Running org.jboss.test.cmp2.cmrstress.CMRStressTestCase
[junit] TEST org.jboss.test.cmp2.cmrstress.CMRStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.cts.test.StatelessSessionStressTestCase
[junit] TEST org.jboss.test.cts.test.StatelessSessionStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.deadlock.test.BeanStressTestCase
[junit] TEST org.jboss.test.deadlock.test.BeanStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.hello.test.HelloClusteredHttpStressTestCase
[junit] TEST org.jboss.test.hello.test.HelloClusteredHttpStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.hello.test.HelloHttpStressTestCase
[junit] TEST org.jboss.test.hello.test.HelloHttpStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.hello.test.HelloTimingStressTestCase
[junit] TEST org.jboss.test.hello.test.HelloTimingStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.jbossmq.perf.JBossMQPerfStressTestCase
[junit] TEST org.jboss.test.jbossmq.perf.JBossMQPerfStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.jbossmq.perf.OIL2InvocationLayerStressTestCase
[junit] TEST org.jboss.test.jbossmq.perf.OIL2InvocationLayerStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.jbossmq.perf.OILInvocationLayerStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 12.14 sec
[junit] Running org.jboss.test.jbossmq.perf.RMIInvocationLayerStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 11.428 sec
[junit] Running org.jboss.test.jbossmq.perf.SendReplyPerfStressTestCase
[junit] TEST org.jboss.test.jbossmq.perf.SendReplyPerfStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.jbossmq.perf.UIL2InvocationLayerStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 18.319 sec
[junit] Running org.jboss.test.jca.test.BaseConnectionManagerStressTestCase
[junit] Tests run: 7, Failures: 1, Errors: 0, Time elapsed: 16.619 sec
[junit] TEST org.jboss.test.jca.test.BaseConnectionManagerStressTestCase FAILED
[junit] Running org.jboss.test.jca.test.CachedConnectionBankStressTestCase
[junit] TEST org.jboss.test.jca.test.CachedConnectionBankStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.lock.test.EnterpriseEntityStressTestCase
[junit] TEST org.jboss.test.lock.test.EnterpriseEntityStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.naming.test.NamingStressTestCase
[junit] TEST org.jboss.test.naming.test.NamingStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.perf.test.PerfStressTestCase
[junit] TEST org.jboss.test.perf.test.PerfStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.pooled.test.BeanStressTestCase
[junit] TEST org.jboss.test.pooled.test.BeanStressTestCase FAILED (timeout)

tests-client-stress:

tests-security-basic-stress:
[junit] Running org.jboss.test.jmx.test.SecureJMXInvokerUnitTestCase
[junit] TEST org.jboss.test.jmx.test.SecureJMXInvokerUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.perf.test.SecurePerfStressTestCase

[JBoss-dev] JBoss Shutdown Failed! JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-20 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan 20 07:10:46 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
JBOSS SHUTDOWN FAILED

===
Tue Jan 20 07:10:46 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: % ( / ) - . JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-20 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan 20 07:21:34 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

===
Tue Jan 20 07:21:34 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 94 % ( 1490 / 1570 ) - come on - pull your finger out. JBoss (HEAD/winxp/1.4.1_06) [AUTOMATED]

2004-01-20 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan 21 01:19:18 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1570



Successful tests:  1490

Errors:61

Failures:  19





[time of test: 2004-01-21.00-32 GMT]
[java.version: 1.4.1_06]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_06-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_06/logtests/testresults/reports/html//2004-01-21.00-32
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Wed Jan 21 01:19:18 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_06
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_06-b01)
Java HotSpot(TM) Client VM (build 1.4.1_06-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 94 % ( 1450 / 1533 ) - come on - pull your finger out. JBoss (HEAD/linux1/1.4.1_06) [AUTOMATED]

2004-01-20 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan 21 02:32:39 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1533



Successful tests:  1450

Errors:64

Failures:  19





[time of test: 2004-01-21.00-43 GMT]
[java.version: 1.4.1_06]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_06-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-28.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.1_06/logtests/testresults/reports/html//2004-01-21.00-43
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: no protocol: 
/home/jbossci/jbossci2/jboss-head-test/testsuite/output/lib/oldxerces.war

===
Wed Jan 21 02:32:39 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.1_06
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_06-b01)
Java HotSpot(TM) Client VM (build 1.4.1_06-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 82 % ( 1063 / 1292 ) - come on - pull your finger out. JBoss (HEAD/winxp/1.4.2_03) [AUTOMATED]

2004-01-20 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan 21 04:06:39 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1292



Successful tests:  1063

Errors:209

Failures:  20





[time of test: 2004-01-21.01-39 GMT]
[java.version: 1.4.2_03]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_03-b02]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_03/logtests/testresults/reports/html//2004-01-21.01-39
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d

===
Wed Jan 21 04:06:40 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_03
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_03-b02)
Java HotSpot(TM) Client VM (build 1.4.2_03-b02, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1680 / 1759 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-19 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan 20 01:23:33 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1759



Successful tests:  1680

Errors:60

Failures:  19





[time of test: 2004-01-20.00-31 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-20.00-31
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Tue Jan 20 01:23:34 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1679 / 1759 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2004-01-19 Thread chris
Tue Jan 20 02:35:55 GMTST 2004
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1759



Successful tests:  1679

Errors:59

Failures:  21





[time of test: 2004-01-20.01-44 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2004-01-20.01-44
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Tue Jan 20 02:35:55 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 94 % ( 1491 / 1570 ) - come on - pull your finger out. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-18 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan 19 01:15:45 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1570



Successful tests:  1491

Errors:59

Failures:  20





[time of test: 2004-01-19.00-30 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-19.00-30
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Mon Jan 19 01:15:45 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1492 / 1570 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2004-01-18 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan 19 02:21:02 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1570



Successful tests:  1492

Errors:58

Failures:  20





[time of test: 2004-01-19.01-34 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2004-01-19.01-34
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: org.jboss.aop.proxy$org.jboss.test.aop.bean.POJO
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:testClusteredNonadvisedRemoting
Type:error
Exception:   java.rmi.UnmarshalException
Message: error unmarshalling return; nested exception is:   
java.lang.ClassNotFoundException: 
org.jboss.aop.proxy$org.jboss.test.aop.bean.NonadvisedPOJO
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Mon Jan 19 02:21:02 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1683 / 1759 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-16 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Jan 17 01:44:43 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1759



Successful tests:  1683

Errors:56

Failures:  20





[time of test: 2004-01-17.00-52 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-17.00-52
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Sat Jan 17 01:44:43 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1683 / 1759 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2004-01-16 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Jan 17 03:11:25 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1759



Successful tests:  1683

Errors:57

Failures:  19





[time of test: 2004-01-17.02-19 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2004-01-17.02-19
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Sat Jan 17 03:11:26 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1494 / 1566 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-15 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan 16 01:35:55 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1566



Successful tests:  1494

Errors:55

Failures:  17





[time of test: 2004-01-16.00-45 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-16.00-45
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.replicated.SyncTxUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Fri Jan 16 01:35:55 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1492 / 1569 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2004-01-15 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan 16 03:01:04 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1569



Successful tests:  1492

Errors:58

Failures:  19





[time of test: 2004-01-16.02-11 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2004-01-16.02-11
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Fri Jan 16 03:01:05 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 83 % ( 1074 / 1289 ) - come on - pull your finger out. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2004-01-14 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan 14 21:25:12 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1289



Successful tests:  1074

Errors:195

Failures:  20





[time of test: 2004-01-14.02-10 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2004-01-14.02-10
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Wed Jan 14 21:25:13 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1497 / 1567 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-13 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan 14 01:35:57 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1567



Successful tests:  1497

Errors:52

Failures:  18





[time of test: 2004-01-14.00-48 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-14.00-48
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Wed Jan 14 01:35:57 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Shutdown Failed! JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-12 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan 12 07:10:36 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
JBOSS SHUTDOWN FAILED

===
Mon Jan 12 07:10:36 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: % ( / ) - . JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-12 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan 12 07:21:20 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

===
Mon Jan 12 07:21:20 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1680 / 1756 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-12 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan 13 01:41:09 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1756



Successful tests:  1680

Errors:58

Failures:  18





[time of test: 2004-01-13.00-49 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-13.00-49
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Tue Jan 13 01:41:10 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1683 / 1756 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2004-01-12 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan 13 03:14:42 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1756



Successful tests:  1683

Errors:55

Failures:  18





[time of test: 2004-01-13.02-16 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2004-01-13.02-16
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Tue Jan 13 03:14:42 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Test Job Failed to Complete Successfully (or we gave up on it...)! JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-11 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan 11 07:10:22 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
tests-standard-stress:
[junit] Running org.jboss.test.bank.test.BankEJB20StressTestCase
[junit] TEST org.jboss.test.bank.test.BankEJB20StressTestCase FAILED (timeout)
[junit] Running org.jboss.test.bank.test.BankStressTestCase
[junit] TEST org.jboss.test.bank.test.BankStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.cache.stress.LocalStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 85.307 sec
[junit] Running org.jboss.test.cache.stress.ReadWriteLockWithUpgradeStressTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 7.569 sec
[junit] Running org.jboss.test.cmp2.cmrstress.CMRStressTestCase
[junit] TEST org.jboss.test.cmp2.cmrstress.CMRStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.cts.test.StatelessSessionStressTestCase
[junit] TEST org.jboss.test.cts.test.StatelessSessionStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.deadlock.test.BeanStressTestCase
[junit] TEST org.jboss.test.deadlock.test.BeanStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.hello.test.HelloClusteredHttpStressTestCase
[junit] TEST org.jboss.test.hello.test.HelloClusteredHttpStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.hello.test.HelloHttpStressTestCase
[junit] TEST org.jboss.test.hello.test.HelloHttpStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.hello.test.HelloTimingStressTestCase
[junit] TEST org.jboss.test.hello.test.HelloTimingStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.jbossmq.perf.JBossMQPerfStressTestCase
[junit] TEST org.jboss.test.jbossmq.perf.JBossMQPerfStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.jbossmq.perf.OIL2InvocationLayerStressTestCase
[junit] TEST org.jboss.test.jbossmq.perf.OIL2InvocationLayerStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.jbossmq.perf.OILInvocationLayerStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 11.053 sec
[junit] Running org.jboss.test.jbossmq.perf.RMIInvocationLayerStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 11.205 sec
[junit] Running org.jboss.test.jbossmq.perf.SendReplyPerfStressTestCase
[junit] TEST org.jboss.test.jbossmq.perf.SendReplyPerfStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.jbossmq.perf.UIL2InvocationLayerStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 16.133 sec
[junit] Running org.jboss.test.jca.test.BaseConnectionManagerStressTestCase
[junit] Tests run: 7, Failures: 2, Errors: 0, Time elapsed: 19.578 sec
[junit] TEST org.jboss.test.jca.test.BaseConnectionManagerStressTestCase FAILED
[junit] Running org.jboss.test.jca.test.CachedConnectionBankStressTestCase
[junit] TEST org.jboss.test.jca.test.CachedConnectionBankStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.lock.test.EnterpriseEntityStressTestCase
[junit] TEST org.jboss.test.lock.test.EnterpriseEntityStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.naming.test.NamingStressTestCase
[junit] TEST org.jboss.test.naming.test.NamingStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.perf.test.PerfStressTestCase
[junit] TEST org.jboss.test.perf.test.PerfStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.pooled.test.BeanStressTestCase
[junit] TEST org.jboss.test.pooled.test.BeanStressTestCase FAILED (timeout)

tests-client-stress:

tests-security-basic-stress:
[junit] Running org.jboss.test.jmx.test.SecureJMXInvokerUnitTestCase
[junit] TEST org.jboss.test.jmx.test.SecureJMXInvokerUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.perf.test.SecurePerfStressTestCase
[junit] TEST org.jboss.test.perf.test.SecurePerfStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.security.test.SecurityMgrStressTestCase
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.965 sec

tests-jsr77-unit:
[junit] Running org.jboss.test.management.test.JSR77SpecUnitTestCase
[junit] TEST org.jboss.test.management.test.JSR77SpecUnitTestCase 

[JBoss-dev] JBoss Shutdown Failed! JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-11 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan 11 07:10:45 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
JBOSS SHUTDOWN FAILED

===
Sun Jan 11 07:10:46 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: % ( / ) - . JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-11 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan 11 07:21:39 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

===
Sun Jan 11 07:21:39 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Test Job Failed to Complete Successfully (or we gave up on it...)! JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-11 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan 11 10:10:29 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
[junit] Running org.jboss.test.cmp2.simple.PageSizeUnitTestCase
[junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 7.784 sec
[junit] TEST org.jboss.test.cmp2.simple.PageSizeUnitTestCase FAILED
[junit] Running org.jboss.test.cmp2.simple.SimpleUnitTestCase
[junit] Tests run: 44, Failures: 0, Errors: 44, Time elapsed: 18.645 sec
[junit] TEST org.jboss.test.cmp2.simple.SimpleUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.BmpUnitTestCase
[junit] Tests run: 12, Failures: 0, Errors: 12, Time elapsed: 77.996 sec
[junit] TEST org.jboss.test.cts.test.BmpUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.CmpUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 3, Time elapsed: 29.181 sec
[junit] TEST org.jboss.test.cts.test.CmpUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.CtsCmp2UnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 126.927 sec
[junit] Running org.jboss.test.cts.test.IndependentJarsUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 3, Time elapsed: 16.013 sec
[junit] TEST org.jboss.test.cts.test.IndependentJarsUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.MDBUnitTestCase
[junit] Tests run: 2, Failures: 1, Errors: 1, Time elapsed: 87.056 sec
[junit] TEST org.jboss.test.cts.test.MDBUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.StatefulSessionUnitTestCase
[junit] Tests run: 19, Failures: 0, Errors: 19, Time elapsed: 61.974 sec
[junit] TEST org.jboss.test.cts.test.StatefulSessionUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.StatelessSessionUnitTestCase
[junit] Tests run: 8, Failures: 0, Errors: 8, Time elapsed: 18.267 sec
[junit] TEST org.jboss.test.cts.test.StatelessSessionUnitTestCase FAILED
[junit] Running org.jboss.test.dbtest.test.DbTypesUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 64.47 sec
[junit] Running org.jboss.test.ejbconf.test.MetaDataUnitTestCase
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.645 sec
[junit] Running org.jboss.test.ejbconf.test.ReadOnlyUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 10.519 sec
[junit] Running org.jboss.test.entity.test.EJBLoadUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 7.892 sec
[junit] Running org.jboss.test.entity.test.EntityUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 8.767 sec
[junit] Running org.jboss.test.entity.test.PathologicalUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 11.111 sec
[junit] Running org.jboss.test.entityexc.test.EntityExcUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 15.74 sec
[junit] Running org.jboss.test.exception.EntityExceptionUnitTestCase
[junit] Tests run: 62, Failures: 0, Errors: 62, Time elapsed: 15.273 sec
[junit] TEST org.jboss.test.exception.EntityExceptionUnitTestCase FAILED
[junit] Running org.jboss.test.exception.ExceptionUnitTestCase
[junit] Tests run: 27, Failures: 0, Errors: 27, Time elapsed: 11.326 sec
[junit] TEST org.jboss.test.exception.ExceptionUnitTestCase FAILED
[junit] Running org.jboss.test.ha.jmx.test.HAServiceMBeanSupportUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 17.129 sec
[junit] Running org.jboss.test.ha.singleton.test.HASingletonControllerUnitTestCase
[junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 4.221 sec
[junit] Running org.jboss.test.ha.singleton.test.HASingletonSupportUnitTestCase
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 5.671 sec
[junit] Running org.jboss.test.hello.test.HelloCachedUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 32.562 sec
[junit] Running org.jboss.test.idgen.test.IdGenUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 18.042 sec
[junit] Running org.jboss.test.invokers.test.MultiInvokersUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 69.403 sec
[junit] Running 

[JBoss-dev] JBoss Shutdown Failed! JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-11 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan 11 10:12:01 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
10:11:56,209 WARN  [NamingContext] Failed to connect to localhost:1099
javax.naming.CommunicationException: Failed to connect to server localhost:1099 [Root 
exception is javax.naming.ServiceUnavailableException: Failed to connect to server 
localhost:1099 [Root exception is java.net.ConnectException: Connection refused]]
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:215)
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1181)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:514)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:507)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at org.jboss.Shutdown.main(Shutdown.java:182)
Caused by: javax.naming.ServiceUnavailableException: Failed to connect to server 
localhost:1099 [Root exception is java.net.ConnectException: Connection refused]
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:190)
... 5 more
Caused by: java.net.ConnectException: Connection refused
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
at java.net.Socket.connect(Socket.java:452)
at java.net.Socket.connect(Socket.java:402)
at java.net.Socket.init(Socket.java:309)
at java.net.Socket.init(Socket.java:211)
at 
org.jnp.interfaces.TimedSocketFactory.createSocket(TimedSocketFactory.java:69)
at 
org.jnp.interfaces.TimedSocketFactory.createSocket(TimedSocketFactory.java:62)
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:186)
... 5 more
Exception in thread main javax.naming.CommunicationException: Receive timed out 
[Root exception is java.net.SocketTimeoutException: Receive timed out]
at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1115)
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1192)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:514)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:507)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at org.jboss.Shutdown.main(Shutdown.java:182)
Caused by: java.net.SocketTimeoutException: Receive timed out
at java.net.PlainDatagramSocketImpl.receive(Native Method)
at java.net.DatagramSocket.receive(DatagramSocket.java:711)
at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1093)
... 5 more
JBOSS SHUTDOWN FAILED

===
Sun Jan 11 10:12:01 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 59 % ( 426 / 712 ) - skipping class too much. JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-11 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan 11 10:22:46 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   712



Successful tests:  426

Errors:256

Failures:  30





[time of test: 2004-01-11.10-11 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-28.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.2_01/logtests/testresults/reports/html//2004-01-11.10-11
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.AOPUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.aop.test.RemotingUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.aop.test.SecurityUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.aop.test.SimpleBeanUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.aop.test.TxLockUnitTestCase
Test:testAll
Type:error
Exception:   javax.management.InstanceNotFoundException
Message: jboss.aop:name=TxLockTester is not registered.
-



Suite:   org.jboss.test.aop.test.TxLockUnitTestCase
Test:testServerFound
Type:error
Exception:   org.jboss.deployment.DeploymentException
Message: create operation failed for package 
file:/home/jbossci/jbossci2/jboss-head-test/testsuite/output/lib/aoptest.sar; - nested 
throwable: (org.jboss.deployment.DeploymentException: - nested throwable: 
(java.lang.reflect.UndeclaredThrowableException))

===
Sun Jan 11 10:22:46 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1496 / 1567 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-11 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan 12 01:36:18 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1567



Successful tests:  1496

Errors:54

Failures:  17





[time of test: 2004-01-12.00-48 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-12.00-48
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Mon Jan 12 01:36:18 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1493 / 1566 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-11 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan 12 02:29:53 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1566



Successful tests:  1493

Errors:55

Failures:  18





[time of test: 2004-01-12.00-48 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-28.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.1_05/logtests/testresults/reports/html//2004-01-12.00-48
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: no protocol: 
/home/jbossci/jbossci2/jboss-head-test/testsuite/output/lib/oldxerces.war
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Mon Jan 12 02:29:53 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1490 / 1566 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2004-01-11 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan 12 03:01:20 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1566



Successful tests:  1490

Errors:57

Failures:  19





[time of test: 2004-01-12.02-11 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2004-01-12.02-11
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Mon Jan 12 03:01:20 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Shutdown Failed! JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-10 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Jan 10 07:10:47 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
JBOSS SHUTDOWN FAILED

===
Sat Jan 10 07:10:47 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Test Job Failed to Complete Successfully (or we gave up on it...)! JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-10 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Jan 10 07:10:20 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
[junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed: 54.987 sec

tests-standard-stress:
[junit] Running org.jboss.test.bank.test.BankEJB20StressTestCase
[junit] TEST org.jboss.test.bank.test.BankEJB20StressTestCase FAILED (timeout)
[junit] Running org.jboss.test.bank.test.BankStressTestCase
[junit] TEST org.jboss.test.bank.test.BankStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.cache.stress.LocalStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 83.676 sec
[junit] Running org.jboss.test.cache.stress.ReadWriteLockWithUpgradeStressTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 8.685 sec
[junit] Running org.jboss.test.cmp2.cmrstress.CMRStressTestCase
[junit] TEST org.jboss.test.cmp2.cmrstress.CMRStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.cts.test.StatelessSessionStressTestCase
[junit] TEST org.jboss.test.cts.test.StatelessSessionStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.deadlock.test.BeanStressTestCase
[junit] TEST org.jboss.test.deadlock.test.BeanStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.hello.test.HelloClusteredHttpStressTestCase
[junit] TEST org.jboss.test.hello.test.HelloClusteredHttpStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.hello.test.HelloHttpStressTestCase
[junit] TEST org.jboss.test.hello.test.HelloHttpStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.hello.test.HelloTimingStressTestCase
[junit] TEST org.jboss.test.hello.test.HelloTimingStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.jbossmq.perf.JBossMQPerfStressTestCase
[junit] TEST org.jboss.test.jbossmq.perf.JBossMQPerfStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.jbossmq.perf.OIL2InvocationLayerStressTestCase
[junit] TEST org.jboss.test.jbossmq.perf.OIL2InvocationLayerStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.jbossmq.perf.OILInvocationLayerStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 11.683 sec
[junit] Running org.jboss.test.jbossmq.perf.RMIInvocationLayerStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 12.005 sec
[junit] Running org.jboss.test.jbossmq.perf.SendReplyPerfStressTestCase
[junit] TEST org.jboss.test.jbossmq.perf.SendReplyPerfStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.jbossmq.perf.UIL2InvocationLayerStressTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 17.186 sec
[junit] Running org.jboss.test.jca.test.BaseConnectionManagerStressTestCase
[junit] Tests run: 7, Failures: 1, Errors: 0, Time elapsed: 16.861 sec
[junit] TEST org.jboss.test.jca.test.BaseConnectionManagerStressTestCase FAILED
[junit] Running org.jboss.test.jca.test.CachedConnectionBankStressTestCase
[junit] TEST org.jboss.test.jca.test.CachedConnectionBankStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.lock.test.EnterpriseEntityStressTestCase
[junit] TEST org.jboss.test.lock.test.EnterpriseEntityStressTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.naming.test.NamingStressTestCase
[junit] TEST org.jboss.test.naming.test.NamingStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.perf.test.PerfStressTestCase
[junit] TEST org.jboss.test.perf.test.PerfStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.pooled.test.BeanStressTestCase
[junit] TEST org.jboss.test.pooled.test.BeanStressTestCase FAILED (timeout)

tests-client-stress:

tests-security-basic-stress:
[junit] Running org.jboss.test.jmx.test.SecureJMXInvokerUnitTestCase
[junit] TEST org.jboss.test.jmx.test.SecureJMXInvokerUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.perf.test.SecurePerfStressTestCase
[junit] TEST org.jboss.test.perf.test.SecurePerfStressTestCase FAILED (timeout)
[junit] Running org.jboss.test.security.test.SecurityMgrStressTestCase
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 3.241 sec

tests-jsr77-unit:
[junit] Running 

[JBoss-dev] JBoss Test Results: % ( / ) - . JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-10 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Jan 10 07:21:38 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

===
Sat Jan 10 07:21:38 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Test Job Failed to Complete Successfully (or we gave up on it...)! JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-10 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Jan 10 10:10:24 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 7.322 sec
[junit] Running org.jboss.test.entity.test.EJBLoadUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 6.236 sec
[junit] Running org.jboss.test.entity.test.EntityUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 6.828 sec
[junit] Running org.jboss.test.entity.test.PathologicalUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 7.258 sec
[junit] Running org.jboss.test.entityexc.test.EntityExcUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 6.733 sec
[junit] Running org.jboss.test.exception.EntityExceptionUnitTestCase
[junit] Tests run: 62, Failures: 0, Errors: 62, Time elapsed: 16.028 sec
[junit] TEST org.jboss.test.exception.EntityExceptionUnitTestCase FAILED
[junit] Running org.jboss.test.exception.ExceptionUnitTestCase
[junit] Tests run: 27, Failures: 0, Errors: 27, Time elapsed: 9.175 sec
[junit] TEST org.jboss.test.exception.ExceptionUnitTestCase FAILED
[junit] Running org.jboss.test.ha.jmx.test.HAServiceMBeanSupportUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.524 sec
[junit] Running org.jboss.test.ha.singleton.test.HASingletonControllerUnitTestCase
[junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 3.619 sec
[junit] Running org.jboss.test.ha.singleton.test.HASingletonSupportUnitTestCase
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 3.504 sec
[junit] Running org.jboss.test.hello.test.HelloCachedUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 9.698 sec
[junit] Running org.jboss.test.idgen.test.IdGenUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 6.642 sec
[junit] Running org.jboss.test.invokers.test.MultiInvokersUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 6.721 sec
[junit] Running org.jboss.test.jbossmq.test.DestinationFullUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.158 sec
[junit] Running org.jboss.test.jbossmq.test.HTTPConnectionUnitTestCase
[junit] TEST org.jboss.test.jbossmq.test.HTTPConnectionUnitTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.jbossmq.test.HTTPJBossMQUnitTestCase
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 85.139 sec
[junit] Running org.jboss.test.jbossmq.test.JBossSessionRecoverUnitTestCase
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 13.944 sec
[junit] Running org.jboss.test.jbossmq.test.LargeMessageUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 85.596 sec
[junit] Running org.jboss.test.jbossmq.test.MessageBodyUnitTestCase
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 17.53 sec
[junit] Running org.jboss.test.jbossmq.test.OIL2ConnectionUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 2.643 sec
[junit] Running org.jboss.test.jbossmq.test.OIL2JBossMQUnitTestCase
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 33.167 sec
[junit] Running org.jboss.test.jbossmq.test.OILConnectionUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 1.101 sec
[junit] Running org.jboss.test.jbossmq.test.OILJBossMQUnitTestCase
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 26.706 sec
[junit] Running org.jboss.test.jbossmq.test.RMIConnectionUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 1.824 sec
[junit] Running org.jboss.test.jbossmq.test.RMIJBossMQUnitTestCase
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 30.736 sec
[junit] Running org.jboss.test.jbossmq.test.RollBackUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 7.895 sec
[junit] Running org.jboss.test.jbossmq.test.ScheduledDeliveryUnitTestCase
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 7.388 sec
[junit] Running org.jboss.test.jbossmq.test.SecurityUnitTestCase
[junit] Tests run: 25, Failures: 0, Errors: 0, Time elapsed: 16.197 sec
[junit] 

[JBoss-dev] JBoss Test Results: 57 % ( 421 / 736 ) - skipping class too much. JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-10 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Jan 10 10:22:29 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   736



Successful tests:  421

Errors:273

Failures:  42





[time of test: 2004-01-10.10-10 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-28.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.2_01/logtests/testresults/reports/html//2004-01-10.10-10
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.aop.test.AOPUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: no protocol: 
/home/jbossci/jbossci2/jboss-head-test/testsuite/output/lib/oldxerces.war
-



Suite:   org.jboss.test.cmp2.audit.test.AuditUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.cmp2.commerce.CompleteUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.cmp2.dbschema.relationship.RelationshipSchemaUnitTestCase
Test:testAB_OneToOne_Bi_Table
Type:failure
Exception:   net.sourceforge.junitejb.RemoteAssertionFailedError
Message: expected:1 but was:0

===
Sat Jan 10 10:22:29 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1677 / 1755 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-10 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan 11 01:44:11 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1755



Successful tests:  1677

Errors:60

Failures:  18





[time of test: 2004-01-11.00-48 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-11.00-48
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Sun Jan 11 01:44:11 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 64 % ( 691 / 1067 ) - could do better. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2004-01-09 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan  9 07:13:26 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1067



Successful tests:  691

Errors:353

Failures:  23





[time of test: 2004-01-09.02-10 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2004-01-09.02-10
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.cache.test.replicated.AsyncUnitTestCase
Test:testSyncRepl
Type:failure
Exception:   junit.framework.AssertionFailedError
Message: age obtained from cache2 is null 
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Fri Jan  9 07:13:26 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-09 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan  9 08:18:20 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\classes
[javac] Compiling 44 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.
[javac] Compiling 14 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\resources
 [copy] Copying 7 files to D:\jboss\jboss-head\tomcat\output\resources

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\etc
 [copy] Copying 1 file to D:\jboss\jboss-head\tomcat\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 19 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\tomcat41-service.jar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\tomcat50-service.jar
 [copy] Copying 5 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
[touch] Creating D:\jboss\jboss-head\tomcat\output\build-marker

most:

==
==  Finished with 'most' in module 'tomcat'.
==


_module-tomcat-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat
 [copy] Copying 34 files to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat

==
==  Executing 'most' in module 'console'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\console\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.console.manager.PluginManager' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-09 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan  9 10:12:47 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\classes
[javac] Compiling 44 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.
[javac] Compiling 14 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\resources
 [copy] Copying 7 files to D:\jboss\jboss-head\tomcat\output\resources

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\etc
 [copy] Copying 1 file to D:\jboss\jboss-head\tomcat\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 19 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\tomcat41-service.jar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\tomcat50-service.jar
 [copy] Copying 5 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
[touch] Creating D:\jboss\jboss-head\tomcat\output\build-marker

most:

==
==  Finished with 'most' in module 'tomcat'.
==


_module-tomcat-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat
 [copy] Copying 34 files to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat

==
==  Executing 'most' in module 'console'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\console\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.console.manager.PluginManager' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-09 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan  9 12:15:13 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\classes
[javac] Compiling 44 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.
[javac] Compiling 14 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\resources
 [copy] Copying 7 files to D:\jboss\jboss-head\tomcat\output\resources

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\etc
 [copy] Copying 1 file to D:\jboss\jboss-head\tomcat\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 19 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\tomcat41-service.jar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\tomcat50-service.jar
 [copy] Copying 5 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
[touch] Creating D:\jboss\jboss-head\tomcat\output\build-marker

most:

==
==  Finished with 'most' in module 'tomcat'.
==


_module-tomcat-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat
 [copy] Copying 34 files to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat

==
==  Executing 'most' in module 'console'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\console\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.console.manager.PluginManager' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-09 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan  9 14:21:09 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\classes
[javac] Compiling 44 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.
[javac] Compiling 14 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\resources
 [copy] Copying 7 files to D:\jboss\jboss-head\tomcat\output\resources

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\etc
 [copy] Copying 1 file to D:\jboss\jboss-head\tomcat\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 19 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\tomcat41-service.jar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\tomcat50-service.jar
 [copy] Copying 5 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
[touch] Creating D:\jboss\jboss-head\tomcat\output\build-marker

most:

==
==  Finished with 'most' in module 'tomcat'.
==


_module-tomcat-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat
 [copy] Copying 34 files to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat

==
==  Executing 'most' in module 'console'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\console\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.console.manager.PluginManager' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are 

[JBoss-dev] JBoss Test Results: 84 % ( 1237 / 1463 ) - come on - pull your finger out. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-09 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Jan 10 03:36:52 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1463



Successful tests:  1237

Errors:206

Failures:  20





[time of test: 2004-01-10.00-49 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-10.00-49
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Sat Jan 10 03:36:52 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1678 / 1755 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2004-01-09 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sat Jan 10 05:06:12 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1755



Successful tests:  1678

Errors:60

Failures:  17





[time of test: 2004-01-10.04-11 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2004-01-10.04-11
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Sat Jan 10 05:06:13 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1679 / 1753 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Thu Jan  8 02:38:28 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1753



Successful tests:  1679

Errors:56

Failures:  18





[time of test: 2004-01-08.00-43 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-27.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.1_05/logtests/testresults/reports/html//2004-01-08.00-43
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: no protocol: 
/home/jbossci/jbossci2/jboss-head-test/testsuite/output/lib/oldxerces.war
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Thu Jan  8 02:38:28 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan  7 12:12:41 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\jboss.net\output\etc

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources
 [copy] Copying 13 files to D:\jboss\jboss-head\jboss.net\output\resources

webdoclet:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources\taglib\META-INF
- Running jsptaglib/
Generating flash.tld.

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\main
[javac] Compiling 49 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\main
6 warnings
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\tools
[javac] Compiling 3 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\tools

compile:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\lib
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-client.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-taglib.jar
  [jar] Building jar: 
D:\jboss\jboss-head\jboss.net\output\lib\xdoclet-module-jboss-net.jar
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\bin
[touch] Creating D:\jboss\jboss-head\jboss.net\output\build-marker

most:

==
==  Finished with 'most' in module 'jboss.net'.
==


_module-jboss.net-most:
 [copy] Copying 2 files to D:\jboss\jboss-head\build\output\testbuild\client
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar
[unjar] Expanding: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar into 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar

==
==  Executing 'most' in module 'iiop'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\iiop\output\classes\main
[javac] Compiling 92 source files to D:\jboss\jboss-head\iiop\output\classes\main
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:101:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:115:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:132:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
3 errors
4 warnings

BUILD FAILED
file:D:/jboss/jboss-head/iiop/build.xml:189: Compile failed; see the compiler error 
output for details.

Total time: 3 minutes 46 seconds

===
Wed Jan  7 12:12:42 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.3.1_09
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_09-b03)
Java HotSpot(TM) Client VM (build 1.3.1_09-b03, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced 

[JBoss-dev] JBoss Shutdown Failed! JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Thu Jan  8 07:10:41 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
JBOSS SHUTDOWN FAILED

===
Thu Jan  8 07:10:41 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan  7 08:07:34 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\jboss.net\output\etc

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources
 [copy] Copying 13 files to D:\jboss\jboss-head\jboss.net\output\resources

webdoclet:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources\taglib\META-INF
- Running jsptaglib/
Generating flash.tld.

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\main
[javac] Compiling 49 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\main
6 warnings
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\tools
[javac] Compiling 3 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\tools

compile:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\lib
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-client.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-taglib.jar
  [jar] Building jar: 
D:\jboss\jboss-head\jboss.net\output\lib\xdoclet-module-jboss-net.jar
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\bin
[touch] Creating D:\jboss\jboss-head\jboss.net\output\build-marker

most:

==
==  Finished with 'most' in module 'jboss.net'.
==


_module-jboss.net-most:
 [copy] Copying 2 files to D:\jboss\jboss-head\build\output\testbuild\client
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar
[unjar] Expanding: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar into 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar

==
==  Executing 'most' in module 'iiop'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\iiop\output\classes\main
[javac] Compiling 92 source files to D:\jboss\jboss-head\iiop\output\classes\main
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:101:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:115:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:132:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
3 errors
4 warnings

BUILD FAILED
file:D:/jboss/jboss-head/iiop/build.xml:189: Compile failed; see the compiler error 
output for details.

Total time: 3 minutes 49 seconds

===
Wed Jan  7 08:07:35 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.3.1_09
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_09-b03)
Java HotSpot(TM) Client VM (build 1.3.1_09-b03, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced 

[JBoss-dev] Test Job Failed to Complete Successfully (or we gave up on it...)! JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Thu Jan  8 07:10:24 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
[junit] TEST org.jboss.test.jmx.test.MissingClassUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.jmx.test.ProxyUnitTestCase
[junit] TEST org.jboss.test.jmx.test.ProxyUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.jmx.test.SecureJMXInvokerUnitTestCase
[junit] TEST org.jboss.test.jmx.test.SecureJMXInvokerUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.jmx.test.ServiceRsrcsUnitTestCase
[junit] TEST org.jboss.test.jmx.test.ServiceRsrcsUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.jmx.test.UndeployBrokenPackageUnitTestCase
[junit] TEST org.jboss.test.jmx.test.UndeployBrokenPackageUnitTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.jmx.test.UnpackedDeploymentUnitTestCase
[junit] TEST org.jboss.test.jmx.test.UnpackedDeploymentUnitTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.jrmp.test.CustomSocketsUnitTestCase
[junit] TEST org.jboss.test.jrmp.test.CustomSocketsUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.lock.test.SpinUnitTestCase
[junit] TEST org.jboss.test.lock.test.SpinUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.mdb.test.MDBUnitTestCase
[junit] TEST org.jboss.test.mdb.test.MDBUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.media.entity.test.EntityMediaBeanUnitTestCase
[junit] TEST org.jboss.test.media.entity.test.EntityMediaBeanUnitTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.media.format.MediaFormatUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 3.074 sec
[junit] Running org.jboss.test.naming.test.ENCUnitTestCase
[junit] TEST org.jboss.test.naming.test.ENCUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.naming.test.EjbLinkUnitTestCase
[junit] TEST org.jboss.test.naming.test.EjbLinkUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.naming.test.ExternalContextUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 1.466 sec
[junit] Running org.jboss.test.naming.test.ImplUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 19.696 sec
[junit] Running 
org.jboss.test.naming.test.InternalNamingClassReplacementUnitTestCase
[junit] TEST org.jboss.test.naming.test.InternalNamingClassReplacementUnitTestCase 
FAILED (timeout)
[junit] Running org.jboss.test.naming.test.SimpleUnitTestCase
[junit] Tests run: 10, Failures: 1, Errors: 0, Time elapsed: 19.1 sec
[junit] TEST org.jboss.test.naming.test.SimpleUnitTestCase FAILED
[junit] Running org.jboss.test.perf.test.PerfUnitTestCase
[junit] TEST org.jboss.test.perf.test.PerfUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.proxycompiler.test.BeanProxyUnitTestCase
[junit] TEST org.jboss.test.proxycompiler.test.BeanProxyUnitTestCase FAILED 
(timeout)
[junit] Running org.jboss.test.proxycompiler.test.ProxyCompilerUnitTestCase
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 28.579 sec
[junit] Running org.jboss.test.readahead.test.ReadAheadUnitTestCase
[junit] TEST org.jboss.test.readahead.test.ReadAheadUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.testbean.test.BeanUnitTestCase
[junit] TEST org.jboss.test.testbean.test.BeanUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.testbeancluster.test.BeanUnitTestCase
[junit] TEST org.jboss.test.testbeancluster.test.BeanUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.tm.test.TransactionManagerUnitTestCase
[junit] TEST org.jboss.test.tm.test.TransactionManagerUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.web.test.WebIntegrationUnitTestCase
[junit] TEST org.jboss.test.web.test.WebIntegrationUnitTestCase FAILED (timeout)
[junit] Running org.objectweb.jtests.jms.conform.connection.ConnectionTest
[junit] TEST org.objectweb.jtests.jms.conform.connection.ConnectionTest FAILED 
(timeout)
[junit] Running org.objectweb.jtests.jms.conform.connection.TopicConnectionTest
[junit] TEST org.objectweb.jtests.jms.conform.connection.TopicConnectionTest 
FAILED (timeout)
[junit] Running 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan  7 23:30:18 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\jboss.net\output\etc

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources
 [copy] Copying 13 files to D:\jboss\jboss-head\jboss.net\output\resources

webdoclet:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources\taglib\META-INF
- Running jsptaglib/
Generating flash.tld.

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\main
[javac] Compiling 49 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\main
6 warnings
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\tools
[javac] Compiling 3 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\tools

compile:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\lib
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-client.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-taglib.jar
  [jar] Building jar: 
D:\jboss\jboss-head\jboss.net\output\lib\xdoclet-module-jboss-net.jar
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\bin
[touch] Creating D:\jboss\jboss-head\jboss.net\output\build-marker

most:

==
==  Finished with 'most' in module 'jboss.net'.
==


_module-jboss.net-most:
 [copy] Copying 2 files to D:\jboss\jboss-head\build\output\testbuild\client
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar
[unjar] Expanding: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar into 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar

==
==  Executing 'most' in module 'iiop'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\iiop\output\classes\main
[javac] Compiling 92 source files to D:\jboss\jboss-head\iiop\output\classes\main
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:101:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:115:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:132:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
3 errors
4 warnings

BUILD FAILED
file:D:/jboss/jboss-head/iiop/build.xml:189: Compile failed; see the compiler error 
output for details.

Total time: 3 minutes 48 seconds

===
Wed Jan  7 23:30:18 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.3.1_09
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_09-b03)
Java HotSpot(TM) Client VM (build 1.3.1_09-b03, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced 

[JBoss-dev] JBoss Test Results: % ( / ) - . JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Thu Jan  8 07:21:24 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

===
Thu Jan  8 07:21:24 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan  7 17:45:43 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\jboss.net\output\etc

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources
 [copy] Copying 13 files to D:\jboss\jboss-head\jboss.net\output\resources

webdoclet:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources\taglib\META-INF
- Running jsptaglib/
Generating flash.tld.

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\main
[javac] Compiling 49 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\main
6 warnings
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\tools
[javac] Compiling 3 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\tools

compile:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\lib
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-client.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-taglib.jar
  [jar] Building jar: 
D:\jboss\jboss-head\jboss.net\output\lib\xdoclet-module-jboss-net.jar
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\bin
[touch] Creating D:\jboss\jboss-head\jboss.net\output\build-marker

most:

==
==  Finished with 'most' in module 'jboss.net'.
==


_module-jboss.net-most:
 [copy] Copying 2 files to D:\jboss\jboss-head\build\output\testbuild\client
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar
[unjar] Expanding: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar into 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar

==
==  Executing 'most' in module 'iiop'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\iiop\output\classes\main
[javac] Compiling 92 source files to D:\jboss\jboss-head\iiop\output\classes\main
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:101:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:115:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:132:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
3 errors
4 warnings

BUILD FAILED
file:D:/jboss/jboss-head/iiop/build.xml:189: Compile failed; see the compiler error 
output for details.

Total time: 4 minutes 28 seconds

===
Wed Jan  7 17:45:44 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.3.1_09
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_09-b03)
Java HotSpot(TM) Client VM (build 1.3.1_09-b03, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan  7 20:31:50 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\jboss.net\output\etc

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources
 [copy] Copying 13 files to D:\jboss\jboss-head\jboss.net\output\resources

webdoclet:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources\taglib\META-INF
- Running jsptaglib/
Generating flash.tld.

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\main
[javac] Compiling 49 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\main
6 warnings
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\tools
[javac] Compiling 3 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\tools

compile:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\lib
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-client.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-taglib.jar
  [jar] Building jar: 
D:\jboss\jboss-head\jboss.net\output\lib\xdoclet-module-jboss-net.jar
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\bin
[touch] Creating D:\jboss\jboss-head\jboss.net\output\build-marker

most:

==
==  Finished with 'most' in module 'jboss.net'.
==


_module-jboss.net-most:
 [copy] Copying 2 files to D:\jboss\jboss-head\build\output\testbuild\client
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar
[unjar] Expanding: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar into 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar

==
==  Executing 'most' in module 'iiop'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\iiop\output\classes\main
[javac] Compiling 92 source files to D:\jboss\jboss-head\iiop\output\classes\main
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:101:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:115:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:132:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
3 errors
4 warnings

BUILD FAILED
file:D:/jboss/jboss-head/iiop/build.xml:189: Compile failed; see the compiler error 
output for details.

Total time: 3 minutes 48 seconds

===
Wed Jan  7 20:31:50 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.3.1_09
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_09-b03)
Java HotSpot(TM) Client VM (build 1.3.1_09-b03, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan  7 10:13:49 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\jboss.net\output\etc

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources
 [copy] Copying 13 files to D:\jboss\jboss-head\jboss.net\output\resources

webdoclet:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources\taglib\META-INF
- Running jsptaglib/
Generating flash.tld.

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\main
[javac] Compiling 49 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\main
6 warnings
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\tools
[javac] Compiling 3 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\tools

compile:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\lib
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-client.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-taglib.jar
  [jar] Building jar: 
D:\jboss\jboss-head\jboss.net\output\lib\xdoclet-module-jboss-net.jar
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\bin
[touch] Creating D:\jboss\jboss-head\jboss.net\output\build-marker

most:

==
==  Finished with 'most' in module 'jboss.net'.
==


_module-jboss.net-most:
 [copy] Copying 2 files to D:\jboss\jboss-head\build\output\testbuild\client
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar
[unjar] Expanding: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar into 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar

==
==  Executing 'most' in module 'iiop'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\iiop\output\classes\main
[javac] Compiling 92 source files to D:\jboss\jboss-head\iiop\output\classes\main
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:101:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:115:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:132:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
3 errors
4 warnings

BUILD FAILED
file:D:/jboss/jboss-head/iiop/build.xml:189: Compile failed; see the compiler error 
output for details.

Total time: 3 minutes 48 seconds

===
Wed Jan  7 10:13:49 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.3.1_09
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_09-b03)
Java HotSpot(TM) Client VM (build 1.3.1_09-b03, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Wed Jan  7 14:33:10 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\jboss.net\output\etc

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources
 [copy] Copying 13 files to D:\jboss\jboss-head\jboss.net\output\resources

webdoclet:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\resources\taglib\META-INF
- Running jsptaglib/
Generating flash.tld.

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\main
[javac] Compiling 49 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\main
6 warnings
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\classes\tools
[javac] Compiling 3 source files to 
D:\jboss\jboss-head\jboss.net\output\classes\tools

compile:
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\lib
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-client.jar
  [jar] Building jar: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net-taglib.jar
  [jar] Building jar: 
D:\jboss\jboss-head\jboss.net\output\lib\xdoclet-module-jboss-net.jar
[mkdir] Created dir: D:\jboss\jboss-head\jboss.net\output\bin
[touch] Creating D:\jboss\jboss-head\jboss.net\output\build-marker

most:

==
==  Finished with 'most' in module 'jboss.net'.
==


_module-jboss.net-most:
 [copy] Copying 2 files to D:\jboss\jboss-head\build\output\testbuild\client
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar
[unjar] Expanding: D:\jboss\jboss-head\jboss.net\output\lib\jboss-net.sar into 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jboss-net.sar

==
==  Executing 'most' in module 'iiop'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\iiop\output\classes\main
[javac] Compiling 92 source files to D:\jboss\jboss-head\iiop\output\classes\main
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:101:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:115:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
D:\jboss\jboss-head\iiop\src\main\org\jboss\iiop\jacorb\SSLServerSocketFactory.java:132:
 cannot resolve symbol
symbol  : method setWantClientAuth  (boolean)
location: class javax.net.ssl.SSLServerSocket
 s.setWantClientAuth(request_mutual_auth);
  ^
3 errors
4 warnings

BUILD FAILED
file:D:/jboss/jboss-head/iiop/build.xml:189: Compile failed; see the compiler error 
output for details.

Total time: 3 minutes 49 seconds

===
Wed Jan  7 14:33:10 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.3.1_09
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_09-b03)
Java HotSpot(TM) Client VM (build 1.3.1_09-b03, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Thu Jan  8 20:26:05 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\classes
[javac] Compiling 44 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.
[javac] Compiling 14 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\resources
 [copy] Copying 7 files to D:\jboss\jboss-head\tomcat\output\resources

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\etc
 [copy] Copying 1 file to D:\jboss\jboss-head\tomcat\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 19 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\tomcat41-service.jar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\tomcat50-service.jar
 [copy] Copying 5 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
[touch] Creating D:\jboss\jboss-head\tomcat\output\build-marker

most:

==
==  Finished with 'most' in module 'tomcat'.
==


_module-tomcat-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat
 [copy] Copying 34 files to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat

==
==  Executing 'most' in module 'console'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\console\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.console.manager.PluginManager' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Thu Jan  8 23:30:39 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\classes
[javac] Compiling 44 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.
[javac] Compiling 14 source files to D:\jboss\jboss-head\tomcat\output\classes
Note: Some input files use or override a deprecated API.
Note: Recompile with -deprecation for details.

compile-resources:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\resources
 [copy] Copying 7 files to D:\jboss\jboss-head\tomcat\output\resources

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\etc
 [copy] Copying 1 file to D:\jboss\jboss-head\tomcat\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\tomcat\output\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
[mkdir] Created dir: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
 [copy] Copying 19 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat41.sar\tomcat41-service.jar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\META-INF
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
  [jar] Building jar: 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar\tomcat50-service.jar
 [copy] Copying 5 files to 
D:\jboss\jboss-head\tomcat\output\deploy\jbossweb-tomcat50.sar
[touch] Creating D:\jboss\jboss-head\tomcat\output\build-marker

most:

==
==  Finished with 'most' in module 'tomcat'.
==


_module-tomcat-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
 [copy] Copying 24 files to 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy\jbossweb-tomcat41.sar
[mkdir] Created dir: 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat
 [copy] Copying 34 files to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat\jbossweb-tomcat50.sar
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\docs\examples\tomcat

==
==  Executing 'most' in module 'console'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\console\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.console.manager.PluginManager' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are 

[JBoss-dev] JBoss Test Results: 95 % ( 1498 / 1567 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan  9 01:35:49 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1567



Successful tests:  1498

Errors:52

Failures:  17





[time of test: 2004-01-09.00-48 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-09.00-48
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Fri Jan  9 01:35:49 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1467 / 1539 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan  9 02:19:38 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1539



Successful tests:  1467

Errors:55

Failures:  17





[time of test: 2004-01-09.00-42 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-28.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.1_05/logtests/testresults/reports/html//2004-01-09.00-42
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: no protocol: 
/home/jbossci/jbossci2/jboss-head-test/testsuite/output/lib/oldxerces.war
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Fri Jan  9 02:19:38 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1465 / 1538 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-08 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Fri Jan  9 04:29:05 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1538



Successful tests:  1465

Errors:55

Failures:  18





[time of test: 2004-01-09.02-47 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-28.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.2_01/logtests/testresults/reports/html//2004-01-09.02-47
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: no protocol: 
/home/jbossci/jbossci2/jboss-head-test/testsuite/output/lib/oldxerces.war
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Fri Jan  9 04:29:05 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-28.7 #1 Thu Dec 18 11:31:59 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/linux1/1.4.1_05) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 10:37:57 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
10:37 Jan 05
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)
Searching for build.xml ...
Buildfile: /home/jbossci/jbossci2/jboss-head/build/build.xml

_buildmagic:init:
Trying to override old definition of task property

_buildmagic:init:local-properties:

_buildmagic:init:buildlog:

configure:
Caught exception (org.apache.tools.ant.BuildException) while expanding 
apache.tomcat41.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/apache-tomcat41 not found.
Caught exception (org.apache.tools.ant.BuildException) while expanding 
apache.tomcat50.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/apache-tomcat50 not found.
Caught exception (org.apache.tools.ant.BuildException) while expanding 
beanshell.beanshell.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/beanshell-beanshell/lib not found.
 [echo] groups:  default
 [echo] modules: 
common,jmx,system,naming,remoting,aop,j2ee,transaction,server,security,messaging,connector,cluster,jetty,varia,jboss.net,iiop,management,tomcat,console,cache,compatibility,aspects,media

init:

_buildmagic:modules:most:

==
==  Executing 'most' in module 'common'...
==

_buildmagic:init:

configure:
Caught exception (org.apache.tools.ant.BuildException) while expanding 
apache.tomcat41.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/apache-tomcat41 not found.
Caught exception (org.apache.tools.ant.BuildException) while expanding 
apache.tomcat50.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/apache-tomcat50 not found.
Caught exception (org.apache.tools.ant.BuildException) while expanding 
beanshell.beanshell.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/beanshell-beanshell/lib not found.
Overriding previous definition of reference to xdoclet.task.classpath
Caught exception (org.apache.tools.ant.BuildException) while expanding 
xdoclet.task.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/xdoclet-xdoclet/lib not found.

BUILD FAILED
file:/home/jbossci/jbossci2/jboss-head/common/build.xml:159: 
/home/jbossci/jbossci2/jboss-head/thirdparty/xdoclet-xdoclet/lib not found.

Total time: 6 seconds

===
Mon Jan  5 10:37:57 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan  4 23:09:45 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
2 warnings

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\remoting\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\remoting\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\lib
  [jar] Building jar: D:\jboss\jboss-head\remoting\output\lib\jboss-remoting.jar
[touch] Creating D:\jboss\jboss-head\remoting\output\build-marker

most:

==
==  Finished with 'most' in module 'remoting'.
==


_module-remoting-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\server\all\lib
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\default\lib
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\default\deploy

==
==  Executing 'most' in module 'jmx-remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

output:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan  4 17:33:12 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
2 warnings

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\remoting\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\remoting\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\lib
  [jar] Building jar: D:\jboss\jboss-head\remoting\output\lib\jboss-remoting.jar
[touch] Creating D:\jboss\jboss-head\remoting\output\build-marker

most:

==
==  Finished with 'most' in module 'remoting'.
==


_module-remoting-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\server\all\lib
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\default\lib
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\default\deploy

==
==  Executing 'most' in module 'jmx-remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

output:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan  4 08:07:13 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
2 warnings

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\remoting\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\remoting\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\lib
  [jar] Building jar: D:\jboss\jboss-head\remoting\output\lib\jboss-remoting.jar
[touch] Creating D:\jboss\jboss-head\remoting\output\build-marker

most:

==
==  Finished with 'most' in module 'remoting'.
==


_module-remoting-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\server\all\lib
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\default\lib
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\default\deploy

==
==  Executing 'most' in module 'jmx-remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

output:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: 

[JBoss-dev] JBoss Test Results: 58 % ( 316 / 538 ) - skipping class too much. JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 10:22:30 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   538



Successful tests:  316

Errors:200

Failures:  22





[time of test: 2004-01-05.10-10 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-27.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.2_01/logtests/testresults/reports/html//2004-01-05.10-10
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   AOPUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   RemotingUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   SecurityUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   TxLockUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   VersionedObjectUnitTestCase
Test:testAll
Type:error
Exception:   javax.management.RuntimeMBeanException
Message: java.lang.RuntimeException: loader constraints violated when linking 
org/jboss/test/aop/bean/Address class
-



Suite:   VersionedObjectUnitTestCase
Test:testServerFound
Type:error
Exception:   org.jboss.deployment.IncompleteDeploymentException
Message: 

===
Mon Jan  5 10:22:30 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 08:10:45 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\classes
[javac] Compiling 15 source files to D:\jboss\jboss-head\naming\output\classes

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\naming\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\etc
 [copy] Copying 4 files to D:\jboss\jboss-head\naming\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\lib
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnpserver.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-client.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-tests.jar
[touch] Creating D:\jboss\jboss-head\naming\output\build-marker

most:

==
==  Finished with 'most' in module 'naming'.
==


_module-naming-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\client

==
==  Executing 'most' in module 'remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\detection\multicast\MulticastDetector.java:272:
 cannot resolve symbol

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 10:15:38 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\classes
[javac] Compiling 15 source files to D:\jboss\jboss-head\naming\output\classes

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\naming\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\etc
 [copy] Copying 4 files to D:\jboss\jboss-head\naming\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\lib
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnpserver.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-client.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-tests.jar
[touch] Creating D:\jboss\jboss-head\naming\output\build-marker

most:

==
==  Finished with 'most' in module 'naming'.
==


_module-naming-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\client

==
==  Executing 'most' in module 'remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\detection\multicast\MulticastDetector.java:272:
 cannot resolve symbol

[JBoss-dev] JBoss Test Results: 95 % ( 1630 / 1711 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan  6 05:32:25 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1711



Successful tests:  1630

Errors:61

Failures:  20





[time of test: 2004-01-06.03-09 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-27.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.2_01/logtests/testresults/reports/html//2004-01-06.03-09
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: no protocol: 
/home/jbossci/jbossci2/jboss-head-test/testsuite/output/lib/oldxerces.war
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Tue Jan  6 05:32:25 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 12:19:34 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\classes
[javac] Compiling 15 source files to D:\jboss\jboss-head\naming\output\classes

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\naming\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\etc
 [copy] Copying 4 files to D:\jboss\jboss-head\naming\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\lib
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnpserver.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-client.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-tests.jar
[touch] Creating D:\jboss\jboss-head\naming\output\build-marker

most:

==
==  Finished with 'most' in module 'naming'.
==


_module-naming-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\client

==
==  Executing 'most' in module 'remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\detection\multicast\MulticastDetector.java:272:
 cannot resolve symbol

[JBoss-dev] JBoss Shutdown Failed! JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 10:11:46 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
10:11:41,470 WARN  [NamingContext] Failed to connect to localhost:1099
javax.naming.CommunicationException: Failed to connect to server localhost:1099 [Root 
exception is javax.naming.ServiceUnavailableException: Failed to connect to server 
localhost:1099 [Root exception is java.net.ConnectException: Connection refused]]
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:215)
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1181)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:514)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:507)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at org.jboss.Shutdown.main(Shutdown.java:182)
Caused by: javax.naming.ServiceUnavailableException: Failed to connect to server 
localhost:1099 [Root exception is java.net.ConnectException: Connection refused]
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:190)
... 5 more
Caused by: java.net.ConnectException: Connection refused
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
at java.net.Socket.connect(Socket.java:452)
at java.net.Socket.connect(Socket.java:402)
at java.net.Socket.init(Socket.java:309)
at java.net.Socket.init(Socket.java:211)
at 
org.jnp.interfaces.TimedSocketFactory.createSocket(TimedSocketFactory.java:69)
at 
org.jnp.interfaces.TimedSocketFactory.createSocket(TimedSocketFactory.java:62)
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:186)
... 5 more
Exception in thread main javax.naming.CommunicationException: Receive timed out 
[Root exception is java.net.SocketTimeoutException: Receive timed out]
at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1115)
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1192)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:514)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:507)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at org.jboss.Shutdown.main(Shutdown.java:182)
Caused by: java.net.SocketTimeoutException: Receive timed out
at java.net.PlainDatagramSocketImpl.receive(Native Method)
at java.net.DatagramSocket.receive(DatagramSocket.java:711)
at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1093)
... 5 more
JBOSS SHUTDOWN FAILED

===
Mon Jan  5 10:11:46 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/linux1/1.4.2_01) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 10:38:25 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
10:38 Jan 05
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)
Searching for build.xml ...
Buildfile: /home/jbossci/jbossci2/jboss-head/build/build.xml

_buildmagic:init:
Trying to override old definition of task property

_buildmagic:init:local-properties:

_buildmagic:init:buildlog:

configure:
Caught exception (org.apache.tools.ant.BuildException) while expanding 
apache.tomcat41.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/apache-tomcat41 not found.
Caught exception (org.apache.tools.ant.BuildException) while expanding 
apache.tomcat50.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/apache-tomcat50 not found.
Caught exception (org.apache.tools.ant.BuildException) while expanding 
beanshell.beanshell.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/beanshell-beanshell/lib not found.
 [echo] groups:  default
 [echo] modules: 
common,jmx,system,naming,remoting,aop,j2ee,transaction,server,security,messaging,connector,cluster,jetty,varia,jboss.net,iiop,management,tomcat,console,cache,compatibility,aspects,media

init:

_buildmagic:modules:most:

==
==  Executing 'most' in module 'common'...
==

_buildmagic:init:

configure:
Caught exception (org.apache.tools.ant.BuildException) while expanding 
apache.tomcat41.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/apache-tomcat41 not found.
Caught exception (org.apache.tools.ant.BuildException) while expanding 
apache.tomcat50.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/apache-tomcat50 not found.
Caught exception (org.apache.tools.ant.BuildException) while expanding 
beanshell.beanshell.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/beanshell-beanshell/lib not found.
Overriding previous definition of reference to xdoclet.task.classpath
Caught exception (org.apache.tools.ant.BuildException) while expanding 
xdoclet.task.classpath: 
/home/jbossci/jbossci2/jboss-head/thirdparty/xdoclet-xdoclet/lib not found.

BUILD FAILED
file:/home/jbossci/jbossci2/jboss-head/common/build.xml:159: 
/home/jbossci/jbossci2/jboss-head/thirdparty/xdoclet-xdoclet/lib not found.

Total time: 5 seconds

===
Mon Jan  5 10:38:25 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1674 / 1753 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan  6 03:09:19 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1753



Successful tests:  1674

Errors:61

Failures:  18





[time of test: 2004-01-06.02-14 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2004-01-06.02-14
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.cache.test.local.TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Tue Jan  6 03:09:19 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 23:41:33 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\classes
[javac] Compiling 15 source files to D:\jboss\jboss-head\naming\output\classes

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\naming\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\etc
 [copy] Copying 4 files to D:\jboss\jboss-head\naming\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\lib
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnpserver.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-client.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-tests.jar
[touch] Creating D:\jboss\jboss-head\naming\output\build-marker

most:

==
==  Finished with 'most' in module 'naming'.
==


_module-naming-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\client

==
==  Executing 'most' in module 'remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\detection\multicast\MulticastDetector.java:272:
 cannot resolve symbol

[JBoss-dev] Test Job Failed to Complete Successfully (or we gave up on it...)! JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 10:10:24 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
[junit] Running 
org.jboss.test.cmp2.dbschema.relationship.RelationshipSchemaUnitTestCase
[junit] Tests run: 12, Failures: 0, Errors: 0, Time elapsed: 27.096 sec
[junit] Running org.jboss.test.cmp2.ejbselect.EJBSelectUnitTestCase
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 12.071 sec
[junit] Running org.jboss.test.cmp2.enum.test.EnumUnitTestCase
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.72 sec
[junit] Running org.jboss.test.cmp2.fkmapping.test.FKMappingUnitTestCase
[junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 13.384 sec
[junit] Running 
org.jboss.test.cmp2.fkstackoverflow.test.FKStackOverflowUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 45.268 sec
[junit] Running org.jboss.test.cmp2.idxandusersql.test.IdxAndUsersqlUnitTestCase
[junit] TEST org.jboss.test.cmp2.idxandusersql.test.IdxAndUsersqlUnitTestCase 
FAILED (timeout)
[junit] Running org.jboss.test.cmp2.keygen.test.KeyGenerationUnitTestCase
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 30.414 sec
[junit] Running org.jboss.test.cmp2.lob.LOBUnitTestCase
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 35.294 sec
[junit] Running org.jboss.test.cmp2.optimisticlock.test.OptimisticLockUnitTestCase
[junit] TEST org.jboss.test.cmp2.optimisticlock.test.OptimisticLockUnitTestCase 
FAILED (timeout)
[junit] Running org.jboss.test.cmp2.passivation.test.EntityPassivationUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 143.35 sec
[junit] Running org.jboss.test.cmp2.perf.test.PerfUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 137.566 sec
[junit] Running org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
[junit] Tests run: 8, Failures: 0, Errors: 8, Time elapsed: 12.045 sec
[junit] TEST org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase FAILED
[junit] Running org.jboss.test.cmp2.relationship.RelationshipUnitTestCase
[junit] Tests run: 21, Failures: 21, Errors: 0, Time elapsed: 17.016 sec
[junit] TEST org.jboss.test.cmp2.relationship.RelationshipUnitTestCase FAILED
[junit] Running org.jboss.test.cmp2.simple.PageSizeUnitTestCase
[junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 7.83 sec
[junit] TEST org.jboss.test.cmp2.simple.PageSizeUnitTestCase FAILED
[junit] Running org.jboss.test.cmp2.simple.SimpleUnitTestCase
[junit] Tests run: 44, Failures: 0, Errors: 44, Time elapsed: 9.238 sec
[junit] TEST org.jboss.test.cmp2.simple.SimpleUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.BmpUnitTestCase
[junit] Tests run: 12, Failures: 0, Errors: 12, Time elapsed: 25.92 sec
[junit] TEST org.jboss.test.cts.test.BmpUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.CmpUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 3, Time elapsed: 75.314 sec
[junit] TEST org.jboss.test.cts.test.CmpUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.CtsCmp2UnitTestCase
[junit] TEST org.jboss.test.cts.test.CtsCmp2UnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.cts.test.IndependentJarsUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 3, Time elapsed: 22.463 sec
[junit] TEST org.jboss.test.cts.test.IndependentJarsUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.MDBUnitTestCase
[junit] Tests run: 2, Failures: 1, Errors: 1, Time elapsed: 74.108 sec
[junit] TEST org.jboss.test.cts.test.MDBUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.StatefulSessionUnitTestCase
[junit] Tests run: 19, Failures: 0, Errors: 19, Time elapsed: 14.638 sec
[junit] TEST org.jboss.test.cts.test.StatefulSessionUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.StatelessSessionUnitTestCase
[junit] Tests run: 8, Failures: 0, Errors: 8, Time elapsed: 39.574 sec
[junit] TEST org.jboss.test.cts.test.StatelessSessionUnitTestCase FAILED
[junit] Running org.jboss.test.dbtest.test.DbTypesUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 39.431 sec
[junit] Running org.jboss.test.ejbconf.test.MetaDataUnitTestCase

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan  6 08:04:45 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\classes
[javac] Compiling 15 source files to D:\jboss\jboss-head\naming\output\classes

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\naming\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\etc
 [copy] Copying 4 files to D:\jboss\jboss-head\naming\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\lib
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnpserver.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-client.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-tests.jar
[touch] Creating D:\jboss\jboss-head\naming\output\build-marker

most:

==
==  Finished with 'most' in module 'naming'.
==


_module-naming-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\client

==
==  Executing 'most' in module 'remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\detection\multicast\MulticastDetector.java:272:
 cannot resolve symbol

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 17:38:24 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\classes
[javac] Compiling 15 source files to D:\jboss\jboss-head\naming\output\classes

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\naming\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\etc
 [copy] Copying 4 files to D:\jboss\jboss-head\naming\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\lib
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnpserver.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-client.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-tests.jar
[touch] Creating D:\jboss\jboss-head\naming\output\build-marker

most:

==
==  Finished with 'most' in module 'naming'.
==


_module-naming-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\client

==
==  Executing 'most' in module 'remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\detection\multicast\MulticastDetector.java:272:
 cannot resolve symbol

[JBoss-dev] JBoss Test Results: % ( / ) - . JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan  4 07:21:52 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

===
Sun Jan  4 07:21:52 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 20:32:51 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\classes
[javac] Compiling 15 source files to D:\jboss\jboss-head\naming\output\classes

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\naming\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\etc
 [copy] Copying 4 files to D:\jboss\jboss-head\naming\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\lib
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnpserver.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-client.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-tests.jar
[touch] Creating D:\jboss\jboss-head\naming\output\build-marker

most:

==
==  Finished with 'most' in module 'naming'.
==


_module-naming-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\client

==
==  Executing 'most' in module 'remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\detection\multicast\MulticastDetector.java:272:
 cannot resolve symbol

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan  4 12:50:31 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
2 warnings

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\remoting\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\remoting\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\lib
  [jar] Building jar: D:\jboss\jboss-head\remoting\output\lib\jboss-remoting.jar
[touch] Creating D:\jboss\jboss-head\remoting\output\build-marker

most:

==
==  Finished with 'most' in module 'remoting'.
==


_module-remoting-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\server\all\lib
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\default\lib
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\default\deploy

==
==  Executing 'most' in module 'jmx-remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

output:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: 

[JBoss-dev] JBoss Shutdown Failed! JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan  4 10:11:35 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
10:11:30,428 WARN  [NamingContext] Failed to connect to localhost:1099
javax.naming.CommunicationException: Failed to connect to server localhost:1099 [Root 
exception is javax.naming.ServiceUnavailableException: Failed to connect to server 
localhost:1099 [Root exception is java.net.ConnectException: Connection refused]]
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:215)
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1181)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:514)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:507)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at org.jboss.Shutdown.main(Shutdown.java:182)
Caused by: javax.naming.ServiceUnavailableException: Failed to connect to server 
localhost:1099 [Root exception is java.net.ConnectException: Connection refused]
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:190)
... 5 more
Caused by: java.net.ConnectException: Connection refused
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
at java.net.Socket.connect(Socket.java:452)
at java.net.Socket.connect(Socket.java:402)
at java.net.Socket.init(Socket.java:309)
at java.net.Socket.init(Socket.java:211)
at 
org.jnp.interfaces.TimedSocketFactory.createSocket(TimedSocketFactory.java:69)
at 
org.jnp.interfaces.TimedSocketFactory.createSocket(TimedSocketFactory.java:62)
at org.jnp.interfaces.NamingContext.getServer(NamingContext.java:186)
... 5 more
Exception in thread main javax.naming.CommunicationException: Receive timed out 
[Root exception is java.net.SocketTimeoutException: Receive timed out]
at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1115)
at org.jnp.interfaces.NamingContext.checkRef(NamingContext.java:1192)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:514)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:507)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at org.jboss.Shutdown.main(Shutdown.java:182)
Caused by: java.net.SocketTimeoutException: Receive timed out
at java.net.PlainDatagramSocketImpl.receive(Native Method)
at java.net.DatagramSocket.receive(DatagramSocket.java:711)
at org.jnp.interfaces.NamingContext.discoverServer(NamingContext.java:1093)
... 5 more
JBOSS SHUTDOWN FAILED

===
Sun Jan  4 10:11:35 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1682 / 1754 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Tue Jan  6 01:40:26 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1754



Successful tests:  1682

Errors:54

Failures:  18





[time of test: 2004-01-06.00-48 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-06.00-48
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   org.jboss.test.classloader.test.ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   org.jboss.test.cmp2.readonly.ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Tue Jan  6 01:40:27 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1491 / 1565 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.2_01) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 03:00:07 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1565



Successful tests:  1491

Errors:55

Failures:  19





[time of test: 2004-01-05.02-12 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.2_01/logtests/testresults/reports/html//2004-01-05.02-12
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Mon Jan  5 03:00:07 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 95 % ( 1490 / 1565 ) - nearly there - who is gonna get us to 100%!. JBoss (HEAD/winxp/1.4.1_05) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 01:38:18 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1565



Successful tests:  1490

Errors:56

Failures:  19





[time of test: 2004-01-05.00-51 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Windows XP]
[os.arch: x86]
[os.version: 5.1]

Useful resources:

- 
http://jboss.kimptoc.net/winxp/1.4.1_05/logtests/testresults/reports/html//2004-01-05.00-51
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: unknown protocol: d
-



Suite:   ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   ReadonlyUnitTestCase
Test:testReadonlyEntityCreate
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   ReadonlyUnitTestCase
Test:testReadonlySetFK
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Mon Jan  5 01:38:18 GMTST 2004
===
CYGWIN_NT-5.1 quarks2 1.5.4(0.94/3/2) 2003-09-12 23:08 i686 unknown unknown Cygwin
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] JBoss Test Results: 65 % ( 698 / 1067 ) - could do better. JBoss (HEAD/linux1/1.4.1_05) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 07:10:08 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   1067



Successful tests:  698

Errors:346

Failures:  23





[time of test: 2004-01-05.00-42 GMT]
[java.version: 1.4.1_05]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.1_05-b01]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-27.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.1_05/logtests/testresults/reports/html//2004-01-05.00-42
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   SchedulerUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   TxConcurrentUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   ScopingUnitTestCase
Test:testWarXmlOverrides
Type:error
Exception:   java.net.MalformedURLException
Message: no protocol: 
/home/jbossci/jbossci2/jboss-head-test/testsuite/output/lib/oldxerces.war
-



Suite:   ReadonlyUnitTestCase
Test:testSetUp
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   ReadonlyUnitTestCase
Test:testReadonlyCMPField
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]
-



Suite:   ReadonlyUnitTestCase
Test:testReadonlyEntityCMPFieldChange
Type:error
Exception:   net.sourceforge.junitejb.RemoteTestException
Message: Column not found: ID in statement [INSERT INTO Publisher (id, name) 
VALUES (1,'O''Reilly  Associates')]

===
Mon Jan  5 07:10:08 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.1_05
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] Test Job Failed to Complete Successfully (or we gave up on it...)! JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan  4 10:10:20 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
[junit] Tests run: 4, Failures: 0, Errors: 1, Time elapsed: 92.172 sec
[junit] TEST org.jboss.test.cts.test.CtsCmp2UnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.IndependentJarsUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 3, Time elapsed: 6.955 sec
[junit] TEST org.jboss.test.cts.test.IndependentJarsUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.MDBUnitTestCase
[junit] Tests run: 2, Failures: 1, Errors: 1, Time elapsed: 29.445 sec
[junit] TEST org.jboss.test.cts.test.MDBUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.StatefulSessionUnitTestCase
[junit] Tests run: 19, Failures: 0, Errors: 19, Time elapsed: 9.079 sec
[junit] TEST org.jboss.test.cts.test.StatefulSessionUnitTestCase FAILED
[junit] Running org.jboss.test.cts.test.StatelessSessionUnitTestCase
[junit] Tests run: 8, Failures: 0, Errors: 8, Time elapsed: 7.337 sec
[junit] TEST org.jboss.test.cts.test.StatelessSessionUnitTestCase FAILED
[junit] Running org.jboss.test.dbtest.test.DbTypesUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 23.717 sec
[junit] Running org.jboss.test.ejbconf.test.MetaDataUnitTestCase
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 3.642 sec
[junit] Running org.jboss.test.ejbconf.test.ReadOnlyUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 8.32 sec
[junit] Running org.jboss.test.entity.test.EJBLoadUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 3.707 sec
[junit] Running org.jboss.test.entity.test.EntityUnitTestCase
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 6.247 sec
[junit] Running org.jboss.test.entity.test.PathologicalUnitTestCase
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 8.002 sec
[junit] Running org.jboss.test.entityexc.test.EntityExcUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 7.557 sec
[junit] Running org.jboss.test.exception.EntityExceptionUnitTestCase
[junit] Tests run: 62, Failures: 0, Errors: 62, Time elapsed: 13.334 sec
[junit] TEST org.jboss.test.exception.EntityExceptionUnitTestCase FAILED
[junit] Running org.jboss.test.exception.ExceptionUnitTestCase
[junit] Tests run: 27, Failures: 0, Errors: 27, Time elapsed: 9.292 sec
[junit] TEST org.jboss.test.exception.ExceptionUnitTestCase FAILED
[junit] Running org.jboss.test.ha.jmx.test.HAServiceMBeanSupportUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.638 sec
[junit] Running org.jboss.test.ha.singleton.test.HASingletonControllerUnitTestCase
[junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 5.454 sec
[junit] Running org.jboss.test.ha.singleton.test.HASingletonSupportUnitTestCase
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 5.844 sec
[junit] Running org.jboss.test.hello.test.HelloCachedUnitTestCase
[junit] TEST org.jboss.test.hello.test.HelloCachedUnitTestCase FAILED (timeout)
[junit] Running org.jboss.test.idgen.test.IdGenUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 48.932 sec
[junit] Running org.jboss.test.invokers.test.MultiInvokersUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 18.627 sec
[junit] Running org.jboss.test.jbossmq.test.DestinationFullUnitTestCase
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.375 sec
[junit] Running org.jboss.test.jbossmq.test.HTTPConnectionUnitTestCase
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 9.559 sec
[junit] Running org.jboss.test.jbossmq.test.HTTPJBossMQUnitTestCase
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 126.91 sec
[junit] Running org.jboss.test.jbossmq.test.JBossSessionRecoverUnitTestCase
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 13.49 sec
[junit] Running org.jboss.test.jbossmq.test.LargeMessageUnitTestCase
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 32.535 sec
[junit] Running org.jboss.test.jbossmq.test.MessageBodyUnitTestCase
[junit] Tests run: 6, Failures: 0, Errors: 0, Time 

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Mon Jan  5 14:08:45 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===

_buildmagic:init:

init:

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\classes
[javac] Compiling 15 source files to D:\jboss\jboss-head\naming\output\classes

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\naming\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\etc
 [copy] Copying 4 files to D:\jboss\jboss-head\naming\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\naming\output\lib
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnpserver.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-client.jar
  [jar] Building jar: D:\jboss\jboss-head\naming\output\lib\jnp-tests.jar
[touch] Creating D:\jboss\jboss-head\naming\output\build-marker

most:

==
==  Finished with 'most' in module 'naming'.
==


_module-naming-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\lib
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\client

==
==  Executing 'most' in module 'remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\detection\multicast\MulticastDetector.java:272:
 cannot resolve symbol

[JBoss-dev] Compilation Failed! JBoss (Branch_3_2/winxp/1.3.1_09) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan  4 10:18:34 GMTST 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

jars:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\gen-src
(XDocletMain.start   45  ) Running mbeaninterface/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jmx-module-jb3.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
(XDocletMain.start   45  ) Running jbossxmbean/
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ServerInterceptorChain' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.transport.Connector' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
(TemplateSubTask.engineStarted   788 ) Generating output for 
'org.jboss.remoting.ClientInvokerAdapter' using template file 
'jar:file:D:\jboss\jboss-head\thirdparty\xdoclet\xdoclet\lib\xdoclet-jboss-module-jb3.jar!/xdoclet/modules/jboss/jmx/resources/jbossmx-xml-descriptor.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
D:\jboss\jboss-head\remoting\src\main\org\jboss\remoting\transport\Connector.java -- 
ConnectorMBean qualified to org.jboss.remoting.transport.ConnectorMBean

compile-classes:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\classes
[javac] Compiling 114 source files to D:\jboss\jboss-head\remoting\output\classes
2 warnings

compile-rmi:
 [rmic] RMI Compiling 1 class to D:\jboss\jboss-head\remoting\output\classes

compile-etc:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\etc
 [copy] Copying 3 files to D:\jboss\jboss-head\remoting\output\etc

compile:
[mkdir] Created dir: D:\jboss\jboss-head\remoting\output\lib
  [jar] Building jar: D:\jboss\jboss-head\remoting\output\lib\jboss-remoting.jar
[touch] Creating D:\jboss\jboss-head\remoting\output\build-marker

most:

==
==  Finished with 'most' in module 'remoting'.
==


_module-remoting-most:
 [copy] Copying 1 file to D:\jboss\jboss-head\build\output\testbuild\server\all\lib
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\all\deploy
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\default\lib
 [copy] Copying 1 file to 
D:\jboss\jboss-head\build\output\testbuild\server\default\deploy

==
==  Executing 'most' in module 'jmx-remoting'...
==

_buildmagic:init:

configure:

xdoclet-task-classpath-check:

init:

_buildmagic:build-bypass-checker:

_buildmagic:build-bypass-notice:

_buildmagic:build-bypass-check:

output:

_buildmagic:init:

init:

compile-mbean-sources:
[mkdir] Created dir: 

[JBoss-dev] JBoss Test Results: 57 % ( 421 / 727 ) - skipping class too much. JBoss (HEAD/linux1/1.4.2_01) [AUTOMATED]

2004-01-06 Thread chris
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===
Sun Jan  4 10:22:26 GMT 2004
===
HERE ARE THE LAST 100 LINES OF THE LOG:
===
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net/ FOR DETAILS==
===
===


JBoss daily test results

SUMMARY

Number of tests run:   727



Successful tests:  421

Errors:263

Failures:  43





[time of test: 2004-01-04.10-10 GMT]
[java.version: 1.4.2_01]
[java.vendor: Sun Microsystems Inc.]
[java.vm.version: 1.4.2_01-b06]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Linux]
[os.arch: i386]
[os.version: 2.4.20-27.7]

Useful resources:

- 
http://jboss.kimptoc.net/linux1/1.4.2_01/logtests/testresults/reports/html//2004-01-04.10-10
 for
the junit report of this test.


NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   VersionedObjectUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   ScopingUnitTestCase
Test:testSingletons
Type:failure
Exception:   junit.framework.AssertionFailedError
Message: checkVersion(V2) is true
-



Suite:   CompleteUnitTestCase
Test:unknown
Type:error
Exception:   junit.framework.AssertionFailedError
Message: Timeout occurred
-



Suite:   RelationshipSchemaUnitTestCase
Test:testAB_OneToOne_Bi_Table
Type:failure
Exception:   net.sourceforge.junitejb.RemoteAssertionFailedError
Message: expected:1 but was:0
-



Suite:   RelationshipSchemaUnitTestCase
Test:testAB_OneToOne_Bi_FK
Type:failure
Exception:   net.sourceforge.junitejb.RemoteAssertionFailedError
Message: expected:2 but was:0
-



Suite:   RelationshipSchemaUnitTestCase
Test:testAB_OneToOne_Uni_Table
Type:failure
Exception:   net.sourceforge.junitejb.RemoteAssertionFailedError
Message: expected:1 but was:0

===
Sun Jan  4 10:22:26 GMT 2004
===
Linux nog.kimptoc.net 2.4.20-27.7 #1 Thu Dec 11 15:04:48 EST 2003 i686 unknown
===
java -version
java version 1.4.2_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_01-b06)
Java HotSpot(TM) Client VM (build 1.4.2_01-b06, mixed mode)


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


  1   2   3   4   5   6   7   8   9   10   >