mirror of https://github.com/apache/openjpa.git
OPENJPA-344. Moved temporary files into the target dir.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@571210 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
849e10a391
commit
cbe8908430
|
@ -31,7 +31,8 @@ public class TestCacheMarshaller
|
||||||
"default(Id=" + getClass().getName() + ", ValidationPolicy="
|
"default(Id=" + getClass().getName() + ", ValidationPolicy="
|
||||||
+ OpenJPAVersionAndConfigurationTypeValidationPolicy.class
|
+ OpenJPAVersionAndConfigurationTypeValidationPolicy.class
|
||||||
.getName()
|
.getName()
|
||||||
+ ", InputURL=file:" + getClass().getName() + ".ser, OutputFile="
|
+ ", InputURL=file:target/" + getClass().getName() + ".ser"
|
||||||
|
+ ", OutputFile=target/"
|
||||||
+ getClass().getName() + ".ser)"
|
+ getClass().getName() + ".ser)"
|
||||||
});
|
});
|
||||||
emf.createEntityManager().close();
|
emf.createEntityManager().close();
|
||||||
|
|
|
@ -38,7 +38,8 @@ public class TestCacheMarshallerEndToEnd
|
||||||
private static final Object[] STORE_PROPS = new Object[] {
|
private static final Object[] STORE_PROPS = new Object[] {
|
||||||
"openjpa.CacheMarshallers",
|
"openjpa.CacheMarshallers",
|
||||||
"default(Id=" + MetaDataCacheMaintenance.class.getName()
|
"default(Id=" + MetaDataCacheMaintenance.class.getName()
|
||||||
+ ", OutputFile=" + MetaDataCacheMaintenance.class.getName() +".ser"
|
+ ", OutputFile=target/"
|
||||||
|
+ MetaDataCacheMaintenance.class.getName() +".ser"
|
||||||
+ ", ConsumeSerializationErrors=false"
|
+ ", ConsumeSerializationErrors=false"
|
||||||
+ ", ValidationPolicy="
|
+ ", ValidationPolicy="
|
||||||
+ OpenJPAVersionAndConfigurationTypeValidationPolicy.class.getName()
|
+ OpenJPAVersionAndConfigurationTypeValidationPolicy.class.getName()
|
||||||
|
@ -53,8 +54,8 @@ public class TestCacheMarshallerEndToEnd
|
||||||
private static final Object[] LOAD_PROPS = new Object[] {
|
private static final Object[] LOAD_PROPS = new Object[] {
|
||||||
"openjpa.CacheMarshallers",
|
"openjpa.CacheMarshallers",
|
||||||
"default(Id=" + MetaDataCacheMaintenance.class.getName()
|
"default(Id=" + MetaDataCacheMaintenance.class.getName()
|
||||||
+ ", InputURL=file:" + MetaDataCacheMaintenance.class.getName()
|
+ ", InputURL=file:target/"
|
||||||
+ ".ser"
|
+ MetaDataCacheMaintenance.class.getName() + ".ser"
|
||||||
+ ", ConsumeSerializationErrors=false"
|
+ ", ConsumeSerializationErrors=false"
|
||||||
+ ", ValidationPolicy="
|
+ ", ValidationPolicy="
|
||||||
+ OpenJPAVersionAndConfigurationTypeValidationPolicy.class.getName()
|
+ OpenJPAVersionAndConfigurationTypeValidationPolicy.class.getName()
|
||||||
|
|
Loading…
Reference in New Issue