You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by dw...@apache.org on 2010/04/14 20:43:11 UTC

svn commit: r934109 - in /openjpa/branches/2.0.x/openjpa-integration/tck: pom.xml tck2.xml

Author: dwoods
Date: Wed Apr 14 18:43:11 2010
New Revision: 934109

URL: http://svn.apache.org/viewvc?rev=934109&view=rev
Log:
update tck runs to use new openjpa.Log setting.  force usage of new patch subset until we get the final ones.

Modified:
    openjpa/branches/2.0.x/openjpa-integration/tck/pom.xml
    openjpa/branches/2.0.x/openjpa-integration/tck/tck2.xml

Modified: openjpa/branches/2.0.x/openjpa-integration/tck/pom.xml
URL: http://svn.apache.org/viewvc/openjpa/branches/2.0.x/openjpa-integration/tck/pom.xml?rev=934109&r1=934108&r2=934109&view=diff
==============================================================================
--- openjpa/branches/2.0.x/openjpa-integration/tck/pom.xml (original)
+++ openjpa/branches/2.0.x/openjpa-integration/tck/pom.xml Wed Apr 14 18:43:11 2010
@@ -234,7 +234,7 @@
                         <property name="db.username" value="nousername" />
                         <property name="db.password" value="nopassword" />
 
-                        <property name="openjpa.log.level" value="WARN" />
+                        <property name="openjpa.Log" value="${openjpa.Log}" />
 
                         <property name="jpatck.pkg.dir" value="com" />
                         <property name="jpatck.test" value="" />
@@ -255,7 +255,7 @@ openjpa.ConnectionPassword: ${db.passwor
 openjpa.FetchBatchSize: -1
 openjpa.Compatibility: StrictIdentityValues=true
 openjpa.Sequence: time
-openjpa.Log: DefaultLevel=${openjpa.log.level}
+openjpa.Log: ${openjpa.Log}
 openjpa.jdbc.DBDictionary: StoreCharsAsNumbers=false
 openjpa.jdbc.SchemaFactory: native(ForeignKeys=true)
                         </echo>

Modified: openjpa/branches/2.0.x/openjpa-integration/tck/tck2.xml
URL: http://svn.apache.org/viewvc/openjpa/branches/2.0.x/openjpa-integration/tck/tck2.xml?rev=934109&r1=934108&r2=934109&view=diff
==============================================================================
--- openjpa/branches/2.0.x/openjpa-integration/tck/tck2.xml (original)
+++ openjpa/branches/2.0.x/openjpa-integration/tck/tck2.xml Wed Apr 14 18:43:11 2010
@@ -23,7 +23,7 @@
     the TCK and patches zip files located at:
 
         ${user.home}/.m2/privaterepos/jpatck-2.0_09-Dec-2009.zip
-        ${user.home}/.m2/privaterepos/jpatck-2.0_09-Dec-2009_patches.zip
+        ${user.home}/.m2/privaterepos/jpatck-2.0_20100414_patches.zip
 
     If you have that file in a different location, it can be specified with
     the "tck.zip" and "tck_patches.zip" system property.
@@ -57,7 +57,8 @@
         <available property="tck.available" file="${tck.zip}" />
         <fail unless="tck.available">The TCK file specified in the "tck.zip" system property (${tck.zip}) does not exist. This file must be downloaded separately in order to be able to run the JPA 2.0 TCK</fail>
 
-        <property name="tck_patches.zip" value="${LOCAL_M2_REPO}/../privaterepos/${tck.level}_patches.zip" />
+        <property name="tck.patch.level" value="20100414" />
+        <property name="tck_patches.zip" value="${LOCAL_M2_REPO}/../privaterepos/jpatck-2.0_${tck.patch.level}_patches.zip" />
         <available property="tck_patches.available" file="${tck_patches.zip}" />
         <fail unless="tck_patches.available">The TCK patches file specified in the "tck_patches.zip" system property (${tck_patches.zip}) does not exist. This file must be downloaded separately in order to be able to run the JPA 2.0 TCK</fail>
 
@@ -84,7 +85,7 @@
         <property name="db.username" value="nousername" />
         <property name="db.password" value="nopassword" />
 
-        <property name="openjpa.log.level" value="WARN" />
+        <property name="openjpa.Log" value="DefaultLevel=TRACE" />
 
         <property name="jpatck.test" value="" />
 
@@ -103,7 +104,7 @@ openjpa.ConnectionPassword: ${db.passwor
 openjpa.FetchBatchSize: -1
 openjpa.Compatibility: StrictIdentityValues=true
 openjpa.Sequence: time
-openjpa.Log: DefaultLevel=${openjpa.log.level}
+openjpa.Log: ${openjpa.Log}
 openjpa.jdbc.DBDictionary: StoreCharsAsNumbers=true
 openjpa.jdbc.SchemaFactory: native(ForeignKeys=true)
 openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)