[hibernate-commits] Hibernate SVN: r18696 - core/trunk/testing/src/main/java/org/hibernate/test/annotations.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Feb 4 15:07:08 EST 2010


Author: steve.ebersole at jboss.com
Date: 2010-02-04 15:07:08 -0500 (Thu, 04 Feb 2010)
New Revision: 18696

Modified:
   core/trunk/testing/src/main/java/org/hibernate/test/annotations/HibernateTestCase.java
Log:
HHH-4848 - Derived identities: Derived entities using @IdClass and mapping a @XToOne are not supported


Modified: core/trunk/testing/src/main/java/org/hibernate/test/annotations/HibernateTestCase.java
===================================================================
--- core/trunk/testing/src/main/java/org/hibernate/test/annotations/HibernateTestCase.java	2010-02-04 19:32:54 UTC (rev 18695)
+++ core/trunk/testing/src/main/java/org/hibernate/test/annotations/HibernateTestCase.java	2010-02-04 20:07:08 UTC (rev 18696)
@@ -43,6 +43,7 @@
 import org.hibernate.junit.FailureExpected;
 import org.hibernate.junit.RequiresDialect;
 import org.hibernate.junit.SkipForDialect;
+import org.hibernate.junit.SkipLog;
 import org.hibernate.tool.hbm2ddl.SchemaExport;
 import org.hibernate.util.StringHelper;
 
@@ -136,7 +137,7 @@
 				builder.append( " (" )
 						.append( failureExpected.jiraKey() )
 						.append( ")" );
-				reportSkip( "Failed with: " + t.toString(), builder.toString()  );
+				SkipLog.LOG.warn( builder.toString(), t );
 			}
 			else {
 				throw t;
@@ -340,8 +341,7 @@
 		builder.append( testDescription );
 		builder.append( " : " );
 		builder.append( reason );
-
-		log.warn( builder.toString() );
+		SkipLog.LOG.warn( builder.toString() );
 	}
 
 	public class RollbackWork implements Work {



More information about the hibernate-commits mailing list