I am running EasyB via Ant and the ant job is triggered from a Gradle job.
I am unable to pass Memory parameters to the Ant job
Gradle script to run Ant
Note: I am passing maxmemory to the ant job, but that didn't help.
check << { def script = new GroovyShell() script.run(new File('InitializeReport.groovy'))
ant.taskdef(name: "easyb", classname:"org.easyb.ant.BehaviorRunnerTask", classpath:sourceSets.test.runtimeClasspath.asPath)
ant.easyb( classpath: sourceSets.test.runtimeClasspath.asPath, failureProperty:'easyb_failed' ,tags:tags,maxmemory:500) { report( location:"${project.testResultsDir}/story."+format, format:format ) behaviors( dir: storiesHome ) { include( name:storyToBeExecuted ) } } ant.fail( if:'easyb_failed', message: 'Failures in easyb stories' ) }
The problem If there are many stories to be executed , the job throws a PermGen error.
Also see Getting a permgen error while running easyb\selenium to see the discussion how we concluded that the problem is with EasyB-Ant and not Gradle