Skip to content

Commit

Permalink
Minor tweak to single stress test parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
jayjwylie committed Jan 15, 2013
1 parent 5686a52 commit 4a3b985
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.xml
Expand Up @@ -422,7 +422,7 @@
<target name="junit-test" depends="build, buildtest, contrib-jar" description="Run single junit test for class ClassName with -Dtest.name=[ClassName] (Note: Use the class name, not the file name with the .java extension)">
<replace-dir dir="${singletestreport.dir}" />
<replace-dir dir="${singletesthtml.dir}" />
<junit printsummary="on" showoutput="true" maxmemory="2048m">
<junit printsummary="on" showoutput="true" maxmemory="4096m">
<classpath refid="contrib-test-classpath" />
<classpath path="${log4j.properties.dir}" />
<formatter type="plain" />
Expand Down
Expand Up @@ -320,7 +320,7 @@ public void stressTest() {
final int NUM_GETTERS_END = 100;
final int NUM_GETTERS_STEP = 25;

final int NUM_OPS = 10 * 1000;
final int NUM_OPS = 2 * 1000;

for(int putters = NUM_PUTTERS_START; putters <= NUM_PUTTERS_END; putters += NUM_PUTTERS_STEP) {
for(int getters = NUM_GETTERS_START; getters <= NUM_GETTERS_END; getters += NUM_GETTERS_STEP) {
Expand Down

0 comments on commit 4a3b985

Please sign in to comment.