summaryrefslogtreecommitdiff
path: root/hudson.xml
blob: 96445dbcb041eb91e5d118044877e49848385beb (plain) (blame)
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
<?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>