Few more fixes to how tests are run

git-svn-id: https://zxing.googlecode.com/svn/trunk@152 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2008-01-22 19:59:11 +00:00
parent d575f728f5
commit 2798be57ec

View file

@ -58,7 +58,7 @@
<pathelement location="lib/junit.jar"/>
</classpath>
</javac>
<junit printsummary="on" haltonfailure="on" haltonerror="on">
<junit printsummary="on" haltonfailure="on" haltonerror="on" fork="true" dir=".">
<formatter type="plain" usefile="false"/>
<classpath>
<pathelement location="build"/>
@ -71,7 +71,8 @@
</assertions>
<batchtest>
<fileset dir="test/src">
<include name="**/*.java"/>
<include name="**/*TestCase.java"/>
<exclude name="com/google/zxing/common/AbstractBlackBoxTestCase.java"/>
</fileset>
</batchtest>
</junit>