mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-18 07:52:14 +01:00
ignored test-bin folder
junit reports in xml
This commit is contained in:
parent
320648e67f
commit
e18d2a018d
1
.gitignore
vendored
1
.gitignore
vendored
@ -16,3 +16,4 @@ hardware/arduino/bootloaders/caterina_LUFA/.dep/
|
||||
.gitignore
|
||||
build/windows/work/
|
||||
build/linux/work/
|
||||
test-bin
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
<target name="clean" description="Clean the build directories">
|
||||
<delete dir="bin" />
|
||||
<delete dir="test-bin" />
|
||||
<delete file="pde.jar" />
|
||||
</target>
|
||||
|
||||
@ -49,7 +50,7 @@
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="test" description="Runs the test">
|
||||
<target name="test" depends="compile" description="Runs the test">
|
||||
<mkdir dir="test-bin"/>
|
||||
|
||||
<javac source="1.5" target="1.5"
|
||||
@ -88,7 +89,7 @@
|
||||
<pathelement location="test-lib/junit-4.11.jar"/>
|
||||
</classpath>
|
||||
|
||||
<formatter type="plain"/>
|
||||
<formatter type="xml"/>
|
||||
|
||||
<batchtest fork="yes" todir="test-bin">
|
||||
<fileset dir="test">
|
||||
@ -99,7 +100,7 @@
|
||||
|
||||
</target>
|
||||
|
||||
<target name="build" depends="compile,test" description="Build PDE">
|
||||
<target name="build" depends="test" description="Build PDE">
|
||||
<jar basedir="bin" destfile="pde.jar" />
|
||||
</target>
|
||||
</project>
|
||||
|
Loading…
x
Reference in New Issue
Block a user