mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 10:25:15 +00:00
Allow passing additional parameters to the test JVM like GC settings etc.
This commit is contained in:
parent
3f02392376
commit
02522dac06
9
pom.xml
9
pom.xml
@ -35,6 +35,11 @@
|
||||
<tests.shuffle>true</tests.shuffle>
|
||||
<tests.output>onerror</tests.output>
|
||||
<tests.client.ratio></tests.client.ratio>
|
||||
<tests.jvm.option1></tests.jvm.option1>
|
||||
<tests.jvm.option2></tests.jvm.option2>
|
||||
<tests.jvm.option3></tests.jvm.option3>
|
||||
<tests.jvm.option4></tests.jvm.option4>
|
||||
|
||||
<es.logger.level>INFO</es.logger.level>
|
||||
</properties>
|
||||
|
||||
@ -366,6 +371,10 @@
|
||||
<exclude>**/*StressTest.class</exclude>
|
||||
</excludes>
|
||||
<jvmArgs>
|
||||
<param>${tests.jvm.option1}</param>
|
||||
<param>${tests.jvm.option2}</param>
|
||||
<param>${tests.jvm.option3}</param>
|
||||
<param>${tests.jvm.option4}</param>
|
||||
<param>-Xmx512m</param>
|
||||
<param>-XX:MaxDirectMemorySize=512m</param>
|
||||
<param>-Des.logger.prefix=</param>
|
||||
|
Loading…
x
Reference in New Issue
Block a user