Skip to content

Commit

Permalink
Change default test output directory for entity cache tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jreznot committed May 27, 2019
1 parent 8dbf524 commit f634fbe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,4 @@ out
*.ids
.idea

modules/*/test-home/
modules/*/build/
modules/core/test-ormcache-run/
modules/*/build/
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ cuba.webHostName=localhost
cuba.webPort=8080
cuba.webContextName=cuba

cuba.confDir=${user.dir}/test-ormcache-run/conf
cuba.logDir=${user.dir}/test-ormcache-run/logs
cuba.tempDir=${user.dir}/test-ormcache-run/temp
cuba.dataDir=${user.dir}/test-ormcache-run/work
cuba.confDir=${user.dir}/build/test-ormcache-run/conf
cuba.logDir=${user.dir}/build/test-ormcache-run/logs
cuba.tempDir=${user.dir}/build/test-ormcache-run/temp
cuba.dataDir=${user.dir}/build/test-ormcache-run/work

cuba.trustedClientPermittedIpList=127.0.0.1, 10.17.*.*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class PersistenceXmlPostProcessorTest extends Specification {
private PersistenceConfigProcessor persistenceConfigProcessor

void setup() {
workDir = System.getProperty('user.dir') + '/test-home/PersistenceXmlPostProcessorTest'
workDir = System.getProperty('user.dir') + '/build/test-home/PersistenceXmlPostProcessorTest'
new File(workDir).deleteDir()

persistenceConfigProcessor = new PersistenceConfigProcessor()
Expand Down

0 comments on commit f634fbe

Please sign in to comment.