forked from javasoze/kamikaze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NOTES.txt
39 lines (34 loc) · 1.3 KB
/
NOTES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Other tests to run:
<target name="perfTest" depends="compile-test">
<java classname="com.kamikaze.test.perf.PForDeltaPerfTest" fork="true">
<classpath refid="compile.class.path" />
<classpath refid="java.class.path" />
<classpath refid="test.class.path" />
<jvmarg value="-d64" />
<jvmarg value="-server" />
<jvmarg value="-Xms2G" />
<jvmarg value="-Xmx4G" />
</java>
</target>
<target name="cloudTest" depends="compile-test">
<java classname="com.kamikaze.test.perf.PForDeltaTestCloudData" fork="true">
<classpath refid="compile.class.path" />
<classpath refid="java.class.path" />
<classpath refid="test.class.path" />
<jvmarg value="-d64" />
<jvmarg value="-server" />
<jvmarg value="-Xms2G" />
<jvmarg value="-Xmx4G" />
</java>
</target>
<target name="sizeTest" depends="compile-test">
<java classname="com.kamikaze.docidset.utils.PForDeltaEstimateSizeOfMultiChoices" fork="true">
<classpath refid="compile.class.path" />
<classpath refid="java.class.path" />
<classpath refid="test.class.path" />
<jvmarg value="-d64" />
<jvmarg value="-server" />
<jvmarg value="-Xms2G" />
<jvmarg value="-Xmx4G" />
</java>
</target>