Werner, at http://jira.codehaus.org/browse/CASTOR-2671 you also commented out Test87 for mysql. According to this I guess the test also failed on mysql for you. Do you already have any idea what causes this failure at your side.
Looking at bamboo results it seams Test87 also worked at our continuous integration server before you disabled it (http://bamboo.ci.codehaus.org/browse/CASTOR-JDK5CPACTF-41). Regards Ralf Ralf Joachim schrieb: > Werner, > > in the meantime I executed tests on 2 more maschines: > > Linux with Java 1.5.0_16 and Maven 2.0.8 > Windows XP with Java 1.6.0_10 and Maven 2.0.9 > > I have clean checkouts on all maschines except that Test87 is enabled > again. I also cleaned maven repositories on both maschines before the > tests. On both maschines I did not see a single failure of cpactf on > multiple executions. > > On the other hand I recognized that jta 1.0.1B can not be downloaded > from the repositories configured and have to be installed by hand. It > was also not possible to download it from sun website. > > In addition 'mvn install' of cpa-testcase-archetype failed on the > linux maschine with maven 2.0.8. Having said that I see a deprecation > message from maven on that target on the windows box but do not get a > failure there. On my linux box at home build worked yesterday evening > but I do not recall yet which version of maven I have installed there. > > Ralf > > > Werner Guttmann schrieb: >> ralf, >> >> Ralf Joachim wrote: >> >>> Werner, >>> >>> can you please send me a log with stacktrace of a failing 'mvn test' run. >>> >> Yes, will do (most likely in the evening). >> >>> Have you changed anything at your environment e.g other versions of >>> derby, junit? >>> >> No, all is the same as resolved by Maven. >> >> >>> Will try to execute things on windows later on to see if I'm able to >>> reproduce the problem. >>> >> Great. Let's see what Lukas finds out re: Java 6.0. >> >>> Ralf >>> >>> >>> Werner Guttmann schrieb: >>> >>>> Hi Ralf, >>>> >>>> I think there's already an open issue about this. I had to comment out >>>> as clearly these three tests do not finish successfully against Derby >>>> when performing a 'mvn test'. >>>> >>>> Let me test this against mySQL later on today, and after that we need to >>>> have a discussion on how to go about this. >>>> >>>> Lukas, can you please confirm that those tests work for you on Java 6.0 ? >>>> >>>> Werner >>>> >>>> Ralf Joachim wrote: >>>> >>>> >>>>> Hi Werner, >>>>> >>>>> can you send me some informations about the failures as I am not able to >>>>> reproduce then here. At multpile executions of 'mvn clean' followed by >>>>> 'mvn install' on cpactf module I haven't seen any single failure on >>>>> these tests. Executing test suite against mysql and oracle from within >>>>> eclipse I didn't see failures either. Having said that I also use Java >>>>> 5.0 but under linux. >>>>> >>>>> Shell we open a new jira issue on that? >>>>> >>>>> Regards >>>>> Ralf >>>>> >>>>> wgut...@codehaus.org schrieb: >>>>> >>>>> >>>>>> Revision >>>>>> 8127 <http://fisheye.codehaus.org/changelog/castor/?cs=8127> >>>>>> Author >>>>>> wguttmn >>>>>> Date >>>>>> 2009-03-10 15:59:38 -0500 (Tue, 10 Mar 2009) >>>>>> >>>>>> >>>>>> Log Message >>>>>> >>>>>> Removed those tests from the Derby execution plan, as they fail >>>>>> consistently with me (on Java 5.0, that is). >>>>>> >>>>>> >>>>>> Modified Paths >>>>>> >>>>>> * >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestExtended.java >>>>>> >>>>>> <#castortrunkcpactfsrctestjavaorgcastorcpatesttest87TestExtendedjava> >>>>>> * >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestRelation.java >>>>>> >>>>>> <#castortrunkcpactfsrctestjavaorgcastorcpatesttest87TestRelationjava> >>>>>> * >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestSimple.java >>>>>> <#castortrunkcpactfsrctestjavaorgcastorcpatesttest87TestSimplejava> >>>>>> >>>>>> >>>>>> Diff >>>>>> >>>>>> >>>>>> Modified: >>>>>> >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestExtended.java >>>>>> (8126 => 8127) >>>>>> >>>>>> --- >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestExtended.java >>>>>> 2009-03-10 20:50:59 UTC (rev 8126) >>>>>> +++ >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestExtended.java >>>>>> 2009-03-10 20:59:38 UTC (rev 8127) >>>>>> @@ -52,8 +52,8 @@ >>>>>> >>>>>> public boolean include(final DatabaseEngineType engine) { >>>>>> return (engine == DatabaseEngineType.MYSQL) >>>>>> - || (engine == DatabaseEngineType.ORACLE) >>>>>> - || (engine == DatabaseEngineType.DERBY); >>>>>> + || (engine == DatabaseEngineType.ORACLE); >>>>>> +// || (engine == DatabaseEngineType.DERBY); >>>>>> } >>>>>> >>>>>> // SQL_SERVER is excluded until issue CASTOR-2634 is resolved >>>>>> >>>>>> >>>>>> Modified: >>>>>> >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestRelation.java >>>>>> (8126 => 8127) >>>>>> >>>>>> --- >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestRelation.java >>>>>> 2009-03-10 20:50:59 UTC (rev 8126) >>>>>> +++ >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestRelation.java >>>>>> 2009-03-10 20:59:38 UTC (rev 8127) >>>>>> @@ -45,8 +45,8 @@ >>>>>> public boolean include(final DatabaseEngineType engine) { >>>>>> return (engine == DatabaseEngineType.MYSQL) >>>>>> || (engine == DatabaseEngineType.ORACLE) >>>>>> - || (engine == DatabaseEngineType.SQL_SERVER) >>>>>> - || (engine == DatabaseEngineType.DERBY); >>>>>> + || (engine == DatabaseEngineType.SQL_SERVER); >>>>>> +// || (engine == DatabaseEngineType.DERBY); >>>>>> } >>>>>> >>>>>> public void delete() throws Exception { >>>>>> >>>>>> >>>>>> Modified: >>>>>> >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestSimple.java >>>>>> (8126 => 8127) >>>>>> >>>>>> --- >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestSimple.java >>>>>> 2009-03-10 20:50:59 UTC (rev 8126) >>>>>> +++ >>>>>> castor/trunk/cpactf/src/test/java/org/castor/cpa/test/test87/TestSimple.java >>>>>> 2009-03-10 20:59:38 UTC (rev 8127) >>>>>> @@ -47,8 +47,8 @@ >>>>>> public boolean include(final DatabaseEngineType engine) { >>>>>> return (engine == DatabaseEngineType.MYSQL) >>>>>> || (engine == DatabaseEngineType.ORACLE) >>>>>> - || (engine == DatabaseEngineType.SQL_SERVER) >>>>>> - || (engine == DatabaseEngineType.DERBY); >>>>>> + || (engine == DatabaseEngineType.SQL_SERVER); >>>>>> +// || (engine == DatabaseEngineType.DERBY); >>>>>> } >>>>>> >>>>>> public void delete() throws Exception { >>>>>> >>>>>> >>>>>> ------------------------------------------------------------------------ >>>>>> >>>>>> To unsubscribe from this list please visit: >>>>>> >>>>>> http://xircles.codehaus.org/manage_email >>>>>> >>>>>> >>>>>> >>>>> >>>>> >>>> --------------------------------------------------------------------- >>>> To unsubscribe from this list, please visit: >>>> >>>> http://xircles.codehaus.org/manage_email >>>> >>>> >>>> >>>> >>> >> >> --------------------------------------------------------------------- >> To unsubscribe from this list, please visit: >> >> http://xircles.codehaus.org/manage_email >> >> >> > > -- > > Syscon Ingenieurbüro für Meß- und Datentechnik GmbH > Ralf Joachim > Raiffeisenstraße 11 > 72127 Kusterdingen > Germany > > Tel. +49 7071 3690 52 > Mobil: +49 173 9630135 > Fax +49 7071 3690 98 > > Internet: www.syscon.eu > E-Mail: ralf.joac...@syscon.eu > > Sitz der Gesellschaft: D-72127 Kusterdingen > Registereintrag: Amtsgericht Stuttgart, HRB 382295 > Geschäftsleitung: Jens Joachim, Ralf Joachim > -- Syscon Ingenieurbüro für Meß- und Datentechnik GmbH Ralf Joachim Raiffeisenstraße 11 72127 Kusterdingen Germany Tel. +49 7071 3690 52 Mobil: +49 173 9630135 Fax +49 7071 3690 98 Internet: www.syscon.eu E-Mail: ralf.joac...@syscon.eu Sitz der Gesellschaft: D-72127 Kusterdingen Registereintrag: Amtsgericht Stuttgart, HRB 382295 Geschäftsleitung: Jens Joachim, Ralf Joachim --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email