Skip to content

Commit e18d2a0

Browse files
committed
ignored test-bin folder
junit reports in xml
1 parent 320648e commit e18d2a0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ hardware/arduino/bootloaders/caterina_LUFA/.dep/
1616
.gitignore
1717
build/windows/work/
1818
build/linux/work/
19+
test-bin

app/build.xml

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
<target name="clean" description="Clean the build directories">
55
<delete dir="bin" />
6+
<delete dir="test-bin" />
67
<delete file="pde.jar" />
78
</target>
89

@@ -49,7 +50,7 @@
4950
</copy>
5051
</target>
5152

52-
<target name="test" description="Runs the test">
53+
<target name="test" depends="compile" description="Runs the test">
5354
<mkdir dir="test-bin"/>
5455

5556
<javac source="1.5" target="1.5"
@@ -88,7 +89,7 @@
8889
<pathelement location="test-lib/junit-4.11.jar"/>
8990
</classpath>
9091

91-
<formatter type="plain"/>
92+
<formatter type="xml"/>
9293

9394
<batchtest fork="yes" todir="test-bin">
9495
<fileset dir="test">
@@ -99,7 +100,7 @@
99100

100101
</target>
101102

102-
<target name="build" depends="compile,test" description="Build PDE">
103+
<target name="build" depends="test" description="Build PDE">
103104
<jar basedir="bin" destfile="pde.jar" />
104105
</target>
105106
</project>

0 commit comments

Comments
 (0)