Skip to content

Commit d67e3bc

Browse files
committed
removing tests from build.xml
1 parent 34f1a9d commit d67e3bc

File tree

1 file changed

+0
-47
lines changed

1 file changed

+0
-47
lines changed

build.xml

-47
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,6 @@
2828
<exclude name="**/*.java"/>
2929
</fileset>
3030
</copy>
31-
<copy includeemptydirs="false" todir="bin">
32-
<fileset dir="examples">
33-
<exclude name="**/*.java"/>
34-
</fileset>
35-
</copy>
36-
<copy includeemptydirs="false" todir="bin">
37-
<fileset dir="tests">
38-
<exclude name="**/*.java"/>
39-
</fileset>
40-
</copy>
4131
</target>
4232
<target name="clean">
4333
<delete dir="bin"/>
@@ -55,10 +45,6 @@
5545
<src path="examples"/>
5646
<classpath refid="socket.io-java-client.classpath"/>
5747
</javac>
58-
<javac debug="true" debuglevel="${debuglevel}" destdir="bin" source="${source}" target="${target}">
59-
<src path="tests"/>
60-
<classpath refid="socket.io-java-client.classpath"/>
61-
</javac>
6248
</target>
6349
<target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects"/>
6450
<target description="copy Eclipse compiler jars to ant lib directory" name="init-eclipse-compiler">
@@ -74,43 +60,10 @@
7460
<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
7561
<antcall target="build"/>
7662
</target>
77-
<target name="AllTests">
78-
<mkdir dir="${junit.output.dir}"/>
79-
<junit fork="yes" printsummary="withOutAndErr">
80-
<formatter type="xml"/>
81-
<test name="io.socket.AllTests" todir="${junit.output.dir}"/>
82-
<env key="PATH" value="/opt/local/bin/"/>
83-
<classpath refid="socket.io-java-client.classpath"/>
84-
</junit>
85-
</target>
8663
<target name="BasicExample">
8764
<java classname="BasicExample" failonerror="true" fork="yes">
8865
<classpath refid="socket.io-java-client.classpath"/>
8966
</java>
90-
</target>
91-
<target name="WebsocketTestSocketIO">
92-
<mkdir dir="${junit.output.dir}"/>
93-
<junit fork="yes" printsummary="withOutAndErr">
94-
<formatter type="xml"/>
95-
<test name="io.socket.WebsocketTestSocketIO" todir="${junit.output.dir}"/>
96-
<classpath refid="socket.io-java-client.classpath"/>
97-
</junit>
98-
</target>
99-
<target name="XHRTestSocketIO">
100-
<mkdir dir="${junit.output.dir}"/>
101-
<junit fork="yes" printsummary="withOutAndErr">
102-
<formatter type="xml"/>
103-
<test name="io.socket.XHRTestSocketIO" todir="${junit.output.dir}"/>
104-
<classpath refid="socket.io-java-client.classpath"/>
105-
</junit>
106-
</target>
107-
<target name="junitreport">
108-
<junitreport todir="${junit.output.dir}">
109-
<fileset dir="${junit.output.dir}">
110-
<include name="TEST-*.xml"/>
111-
</fileset>
112-
<report format="frames" todir="${junit.output.dir}"/>
113-
</junitreport>
11467
</target>
11568
<target name="jar" depends="build-project">
11669
<mkdir dir="jar"/>

0 commit comments

Comments
 (0)