Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1127 → Rev 1128

/httpbench/trunk/build.xml
40,9 → 40,31
<target name="run" depends="compile">
<java classname="ak.httpbench.HttpBench" fork="yes">
<classpath refid="run.classpath" />
<arg value="thr=5" />
<arg value="req=8" />
<arg value="rpc=0" />
<arg value="sleepMin=0" />
<arg value="sleepMax=100" />
<arg value="timeout=60000" />
<arg value="firstUrl=" />
<arg value="http://sun" />
</java>
</target>
 
<target name="fullrun" depends="compile">
<java classname="ak.httpbench.HttpBench" fork="yes">
<classpath refid="run.classpath" />
<arg value="thr=100" />
<arg value="req=100" />
<arg value="rpc=5" />
<arg value="sleepMin=1000" />
<arg value="sleepMax=10000" />
<arg value="timeout=60000" />
<arg value="firstUrl=" />
<arg value="http://sun" />
</java>
</target>
 
<target name="all" depends="clean,compile" />
 
</project>