public
Description: tiny queue system based on starling, in scala
Homepage:
Clone URL: git://github.com/robey/kestrel.git
kestrel / tests.xml
100644 105 lines (95 sloc) 3.461 kb
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?xml version="1.0" encoding="UTF-8"?>
<project name="kestrel-tests" default="default" basedir=".">
  <description> Kestrel load tests </description>
  <import file="ant/bootstrap.xml" />
 
  <!-- can be overridden -->
  <property name="items" value="10000" />
  <property name="bytes" value="1024" />
 
  <target name="put-many-1" depends="prepare">
    <java classname="net.lag.kestrel.load.PutMany" fork="true" failonerror="true">
      <classpath>
        <path refid="test.path" />
        <pathelement location="${target.dir}/classes" />
        <pathelement location="${target.dir}/test-classes" />
      </classpath>
      <arg value="1" />
      <arg value="${items}" />
      <arg value="${bytes}" />
    </java>
  </target>
 
  <target name="put-many-10" depends="prepare">
    <java classname="net.lag.kestrel.load.PutMany" fork="true" failonerror="true">
      <classpath>
        <path refid="test.path" />
        <pathelement location="${target.dir}/classes" />
        <pathelement location="${target.dir}/test-classes" />
      </classpath>
      <arg value="10" />
      <arg value="${items}" />
      <arg value="${bytes}" />
    </java>
  </target>
 
  <target name="put-many-100" depends="prepare">
    <java classname="net.lag.kestrel.load.PutMany" fork="true" failonerror="true">
      <classpath>
        <path refid="test.path" />
        <pathelement location="${target.dir}/classes" />
        <pathelement location="${target.dir}/test-classes" />
      </classpath>
      <syspropertyset>
        <propertyref builtin="commandline" />
      </syspropertyset>
      <arg value="100" />
      <arg value="${items}" />
      <arg value="${bytes}" />
    </java>
  </target>
 
  <target name="put-many-1000" depends="prepare">
    <java classname="net.lag.kestrel.load.PutMany" fork="true" failonerror="true">
      <classpath>
        <path refid="test.path" />
        <pathelement location="${target.dir}/classes" />
        <pathelement location="${target.dir}/test-classes" />
      </classpath>
      <arg value="1000" />
      <arg value="${items}" />
      <arg value="${bytes}" />
    </java>
  </target>
 
  <target name="put-many-2000" depends="prepare">
    <java classname="net.lag.kestrel.load.PutMany" fork="true" failonerror="true">
      <classpath>
        <path refid="test.path" />
        <pathelement location="${target.dir}/classes" />
        <pathelement location="${target.dir}/test-classes" />
      </classpath>
      <arg value="2000" />
      <arg value="${items}" />
      <arg value="${bytes}" />
    </java>
  </target>
 
  <target name="many-clients" depends="prepare">
    <java classname="net.lag.kestrel.load.ManyClients" fork="true" failonerror="true">
      <classpath>
        <path refid="test.path" />
        <pathelement location="${target.dir}/classes" />
        <pathelement location="${target.dir}/test-classes" />
      </classpath>
      <syspropertyset>
        <propertyref builtin="commandline" />
      </syspropertyset>
    </java>
  </target>
 
  <target name="flood" depends="prepare">
    <java classname="net.lag.kestrel.load.Flood" fork="true" failonerror="true">
      <classpath>
        <path refid="test.path" />
        <pathelement location="${target.dir}/classes" />
        <pathelement location="${target.dir}/test-classes" />
      </classpath>
      <syspropertyset>
        <propertyref builtin="commandline" />
      </syspropertyset>
    </java>
  </target>
 
</project>