update tck runs to use new openjpa.Log setting. force usage of new patch subset until we get the final ones.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@934111 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald Woods 2010-04-14 18:48:27 +00:00
parent 1ddfdcef96
commit cdc597a26b
2 changed files with 7 additions and 10 deletions

View File

@ -234,7 +234,7 @@
<property name="db.username" value="nousername" /> <property name="db.username" value="nousername" />
<property name="db.password" value="nopassword" /> <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.pkg.dir" value="com" />
<property name="jpatck.test" value="" /> <property name="jpatck.test" value="" />
@ -255,7 +255,7 @@ openjpa.ConnectionPassword: ${db.password}
openjpa.FetchBatchSize: -1 openjpa.FetchBatchSize: -1
openjpa.Compatibility: StrictIdentityValues=true openjpa.Compatibility: StrictIdentityValues=true
openjpa.Sequence: time openjpa.Sequence: time
openjpa.Log: DefaultLevel=${openjpa.log.level} openjpa.Log: ${openjpa.Log}
openjpa.jdbc.DBDictionary: StoreCharsAsNumbers=false openjpa.jdbc.DBDictionary: StoreCharsAsNumbers=false
openjpa.jdbc.SchemaFactory: native(ForeignKeys=true) openjpa.jdbc.SchemaFactory: native(ForeignKeys=true)
</echo> </echo>

View File

@ -23,7 +23,7 @@
the TCK and patches zip files located at: 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.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 If you have that file in a different location, it can be specified with
the "tck.zip" and "tck_patches.zip" system property. the "tck.zip" and "tck_patches.zip" system property.
@ -57,17 +57,14 @@
<available property="tck.available" file="${tck.zip}" /> <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> <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.patch.level" value="20100414" />
<property name="tck_patches.zip" value="${LOCAL_M2_REPO}/../privaterepos/${tck.level}_patches.zip" /> <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}" /> <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> <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>
-->
<delete dir="${tck.dir}" /> <delete dir="${tck.dir}" />
<unzip overwrite="false" src="${tck.zip}" dest="${tck.base}" /> <unzip overwrite="false" src="${tck.zip}" dest="${tck.base}" />
<!--
<unzip overwrite="true" src="${tck_patches.zip}" dest="${tck.base}" /> <unzip overwrite="true" src="${tck_patches.zip}" dest="${tck.base}" />
-->
<copy overwrite="true" <copy overwrite="true"
file="${tck.dir}/bin/ts.jte" tofile="${tck.dir}/bin/ts.jte.orig" /> file="${tck.dir}/bin/ts.jte" tofile="${tck.dir}/bin/ts.jte.orig" />
<copy overwrite="true" <copy overwrite="true"
@ -88,7 +85,7 @@
<property name="db.username" value="nousername" /> <property name="db.username" value="nousername" />
<property name="db.password" value="nopassword" /> <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="" /> <property name="jpatck.test" value="" />
@ -107,7 +104,7 @@ openjpa.ConnectionPassword: ${db.password}
openjpa.FetchBatchSize: -1 openjpa.FetchBatchSize: -1
openjpa.Compatibility: StrictIdentityValues=true openjpa.Compatibility: StrictIdentityValues=true
openjpa.Sequence: time openjpa.Sequence: time
openjpa.Log: DefaultLevel=${openjpa.log.level} openjpa.Log: ${openjpa.Log}
openjpa.jdbc.DBDictionary: StoreCharsAsNumbers=true openjpa.jdbc.DBDictionary: StoreCharsAsNumbers=true
openjpa.jdbc.SchemaFactory: native(ForeignKeys=true) openjpa.jdbc.SchemaFactory: native(ForeignKeys=true)
openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true) openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)