diff options
author | Jeremias Maerki <jeremias@apache.org> | 2011-03-02 17:28:59 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2011-03-02 17:28:59 +0000 |
commit | b3365920c4f6a21e0d4f31c116a4d258b27bfbdb (patch) | |
tree | 78300b89c44e909ab7179b31442096453c756fff /build.xml | |
parent | aba70fb7a13ef2b5407d99e64096019c62d61df1 (diff) | |
download | xmlgraphics-fop-b3365920c4f6a21e0d4f31c116a4d258b27bfbdb.tar.gz xmlgraphics-fop-b3365920c4f6a21e0d4f31c116a4d258b27bfbdb.zip |
Customizing the Gump runs from our build file rather than from the Gump descriptor.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1076307 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -1440,8 +1440,20 @@ NOTE: <!-- =================================================================== --> <!-- Special target for Gump --> <!-- =================================================================== --> - <target name="gump" depends="junit-reduced"/> -<!-- =================================================================== --> + <target name="gump" depends="package,transcoder-pkg"/> + <target name="gump-test" depends="junit-full"> + <fail> + <condition> + <or> + <isset property="fop.junit.error"/> + <isset property="fop.junit.failure"/> + </or> + </condition> + At least one unit test failed! + </fail> + <echo>All tests passed!</echo> + </target> + <!-- =================================================================== --> <!-- Clean targets --> <!-- =================================================================== --> <target name="clean" description="Cleans the build directory"> |