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 .apdisk
*.class *.class
*output.txt
Generated.txt
*-control.txt
*-results.txt
*-out.txt
OutputErrors.txt
failures failures
People.xml People.xml
annotations/Test0.txt annotations/Test0.txt

View File

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