[hibernate-commits] Hibernate SVN: r15257 - annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Oct 6 18:17:15 EDT 2008


Author: gbadner
Date: 2008-10-06 18:17:13 -0400 (Mon, 06 Oct 2008)
New Revision: 15257

Added:
   annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/Hammer.hbm.xml
Removed:
   annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/hammer.hbm.xml
Modified:
   annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/ProxyBreakingTest.java
Log:
JBPAPP-1258 ANN-588 - ProxyBreakingTest fails on case sensitive file systems and path typo


Copied: annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/Hammer.hbm.xml (from rev 15256, annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/hammer.hbm.xml)
===================================================================
--- annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/Hammer.hbm.xml	                        (rev 0)
+++ annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/Hammer.hbm.xml	2008-10-06 22:17:13 UTC (rev 15257)
@@ -0,0 +1,12 @@
+<?xml version="1.0"?>
+<!DOCTYPE hibernate-mapping PUBLIC
+        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
+        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
+
+<hibernate-mapping package="org.hibernate.test.annotations.bytecode">
+    <class name="Hammer">
+        <id name="id" type="java.lang.Long">
+            <generator class="increment"/>
+        </id>
+    </class>
+</hibernate-mapping>
\ No newline at end of file

Modified: annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/ProxyBreakingTest.java
===================================================================
--- annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/ProxyBreakingTest.java	2008-10-03 22:16:43 UTC (rev 15256)
+++ annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/ProxyBreakingTest.java	2008-10-06 22:17:13 UTC (rev 15257)
@@ -41,7 +41,7 @@
 
 	protected String[] getXmlFiles() {
 		return new String[] {
-				"annotations/bytecode/Hammer.hbm.xml"
+				"org/hibernate/test/annotations/bytecode/Hammer.hbm.xml"
 		};
 	}
 

Deleted: annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/hammer.hbm.xml
===================================================================
--- annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/hammer.hbm.xml	2008-10-03 22:16:43 UTC (rev 15256)
+++ annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/bytecode/hammer.hbm.xml	2008-10-06 22:17:13 UTC (rev 15257)
@@ -1,12 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE hibernate-mapping PUBLIC
-        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
-        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
-
-<hibernate-mapping package="org.hibernate.test.annotations.bytecode">
-    <class name="Hammer">
-        <id name="id" type="java.lang.Long">
-            <generator class="increment"/>
-        </id>
-    </class>
-</hibernate-mapping>
\ No newline at end of file




More information about the hibernate-commits mailing list