Must run OutputVerifier.py by hand

This commit is contained in:
Bruce Eckel 2015-04-22 11:25:46 -07:00
parent efd9f6d36b
commit 693c3b430d
2 changed files with 12 additions and 5 deletions

6
.gitignore vendored
View File

@ -43,6 +43,12 @@ Temporary Items
.apdisk
*.class
*output.txt
Generated.txt
*-control.txt
*-results.txt
*-out.txt
OutputErrors.txt
failures
People.xml
annotations/Test0.txt

View File

@ -80,11 +80,12 @@
<echo message="Errors occurred. See errors.txt for information."/>
</target>
<target name="verify" depends="run"
description="Verifies comment output; requires Python 2.3">
<exec executable="python">
<arg value="OutputVerifier.py"/>
</exec>
<target name="verify" depends="build"
description="Verifies comment output; requires Python 2.3 or newer">
<echo message="run program by hand:"/>
<echo message="python OutputVerifier.py"/>
<echo message="Or:"/>
<echo message="py -2 OutputVerifier.py"/>
</target>
<target name="findbugs" depends="build"