summaryrefslogtreecommitdiff
path: root/hudson.xml
blob: 7acb6cda234e090b28d3e99571943b828cd77b7f (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 line="--quick --pos"/>
    </exec>
  </target>

  <target name="test_neg" depends="build">
    <exec executable="test/scalatest" vmlauncher="no">
      <arg line="--quick --neg"/>
    </exec>
  </target>

</project>