[hibernate-dev] hibernate-mysql-testsuite Build Completed With Testsuite Errors

2006-12-05 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/hibernate-mysql-testsuite?log=log20061205225614 TESTS FAILEDAnt Error Message: /home/cruisecontrol/work/scripts/build-hibernate-db-matrix.xml:127: The following error occurred while executing this line: /home/cruisecontrol/work/sc

[hibernate-dev] hibernate-hsqldb-testsuite Build Completed With Testsuite Errors

2006-12-05 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/hibernate-hsqldb-testsuite?log=log20061205224637 TESTS FAILEDAnt Error Message: /home/cruisecontrol/work/scripts/build-hibernate-db-matrix.xml:92: The following error occurred while executing this line: /home/cruisecontrol/work/sc

[hibernate-dev] hibernate-mysql50-testsuite Build Completed With Testsuite Errors

2006-12-05 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/hibernate-mysql50-testsuite?log=log20061205221846 TESTS FAILEDAnt Error Message: /home/cruisecontrol/work/scripts/build-hibernate-db-matrix.xml:134: The following error occurred while executing this line: /home/cruisecontrol/work/

[hibernate-dev] hibernate-oracle10-testsuite Build Completed With Testsuite Errors

2006-12-05 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/hibernate-oracle10-testsuite?log=log2006120522 TESTS FAILEDAnt Error Message: /home/cruisecontrol/work/scripts/build-hibernate-db-matrix.xml:106: The following error occurred while executing this line: /home/cruisecontrol/work

[hibernate-dev] hibernate-mysql50-testsuite Build Completed With Testsuite Errors

2006-12-05 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/hibernate-mysql50-testsuite?log=log20061205170419 TESTS FAILEDAnt Error Message: /home/cruisecontrol/work/scripts/build-hibernate-db-matrix.xml:134: The following error occurred while executing this line: /home/cruisecontrol/work/

RE: [hibernate-dev] [Fwd: hibernate-mysql50-testsuite Build CompletedWith Testsuite Errors]

2006-12-05 Thread Steve Ebersole
No, not really -Original Message- From: Aleksandar Kostadinov [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 05, 2006 2:56 PM To: Steve Ebersole Cc: Darryl Miles; hibernate-dev@lists.jboss.org Subject: Re: [hibernate-dev] [Fwd: hibernate-mysql50-testsuite Build CompletedWith Testsuite

[hibernate-dev] RE: [Fwd: hibernate-mysql50-testsuite Build Completed With Testsuite Errors]

2006-12-05 Thread Steve Ebersole
2005 introduces the snapshot isolation level (their name for their MVCC implementation). 2000 and earlier were plagued by deadlock issues. I do not know of an easy way around that besides "protecting" those tests individually via the "skipping" mechanism. I do not have the time to do that right

Re: [hibernate-dev] [Fwd: hibernate-mysql50-testsuite Build CompletedWith Testsuite Errors]

2006-12-05 Thread Aleksandar Kostadinov
I mean is it possible to have a testcase which only tries to clean everithing from the database it has connection to. So it is not connected with other tests. It could not use junit at all. It will be best to have a separate target (say cleandb) and when we run "build.sh cleandb" we know that the d

[hibernate-dev] Re: [Fwd: hibernate-mysql50-testsuite Build Completed With Testsuite Errors]

2006-12-05 Thread Aleksandar Kostadinov
jtds guys say their driver is recommended for hibernate ;) Only this one hangs. It's not a problem to use the MS jdbc driver but is it necessary to run on 2005. We now have only 2000. Steve Ebersole wrote: >Yes, you should use the MySQL5Dialect... > >For SQLServer you must: >1) use 2005 and the

[hibernate-dev] RE: [Fwd: hibernate-mysql50-testsuite Build Completed With Testsuite Errors]

2006-12-05 Thread Steve Ebersole
Yes, you should use the MySQL5Dialect... For SQLServer you must: 1) use 2005 and the correspnding MS driver (no jTDS!) 2) use the snapshot isolation level (hibernate.connection.isolation 4096) Otherwise, yes that (and others, I believe) will hang. Here are my local settings for SQLServer (2005 Ex

[hibernate-dev] Re: [Fwd: hibernate-mysql50-testsuite Build Completed With Testsuite Errors]

2006-12-05 Thread Aleksandar Kostadinov
Yes. The tests run with the innodb dialect. Prabhat mentioned that there is a separate dialect for mysql5. Should I set it for tests on mysql 5.0? There is a problem with the SQL server tests. EJB3LockTest freezes things until build timeout comes. Is it possible to set per test timeouts so a singl

RE: [hibernate-dev] [Fwd: hibernate-mysql50-testsuite Build CompletedWith Testsuite Errors]

2006-12-05 Thread Steve Ebersole
It should only be a problem with the last of the test cases. Basically, Hibernate tries to create and drop the schema needed for a particular test class once. However, this ability to run some piece of code once per test class is a deficiency in JUnit. The Hibernate test suite tries to achieve t

[hibernate-dev] Testsuite for new SQL dialect

2006-12-05 Thread Thomas Jäckel
Hello Everybody, I have started to implement a new SQL dialect (Pervasive SQL). I wanted to verify my implementation with the hibernate junittests. Some tests do fail beacause they generate sql operations on tables that do not exist and are not tried to create either. i.e.: Testsuite: org.hibern