reverted to rev12414

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@12420 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
michelou 2007-07-25 17:19:44 +00:00
parent f7b34ab2b6
commit 8b078cb256
2 changed files with 25 additions and 6 deletions

View File

@ -1449,12 +1449,6 @@ GENERATES A DISTRIBUTION
/>
</target>
<target name="hudson" depends="build">
<exec executable="test/scalatest" vmlauncher="no">
<arg value="--quick --pos"/>
</exec>
</target>
<!-- ===========================================================================
CLEAN
============================================================================ -->

25
hudson.xml Normal file
View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id: $ -->
<project name="hudson" default="test_pos">
<target name="build">
<ant
antfile="build.xml"
target="build"
/>
</target>
<target name="test_pos" depends="build">
<exec executable="test/scalatest" vmlauncher="no">
<arg value="--quick --pos"/>
</exec>
</target>
<target name="test_neg" depends="build">
<exec executable="test/scalatest" vmlauncher="no">
<arg value="--quick --neg"/>
</exec>
</target>
</project>