Browse Source

This allows the tests to be run on *nix machines. Still nothing in the

reference directory in CVS to check against though...


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193340 13f79535-47bb-0310-9956-ffa450edef68
tags/pre-columns
Steve Coffman 24 years ago
parent
commit
e26a332130
1 changed files with 25 additions and 0 deletions
  1. 25
    0
      docs/examples/runtests.sh

+ 25
- 0
docs/examples/runtests.sh View File

@@ -0,0 +1,25 @@
#!/bin/sh

echo
echo "Fop Test"
echo "----------------"
echo

if [ "$JAVA_HOME" = "" ] ; then
echo "ERROR: JAVA_HOME not found in your environment."
echo
echo "Please, set the JAVA_HOME variable in your environment to match the"
echo "location of the Java Virtual Machine you want to use."
exit 1
fi

LOCALCLASSPATH=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/classes.zip:../../lib/ant.jar:../../lib/xml.jar:../../lib
ANT_HOME=../../lib

echo Building with classpath $CLASSPATH:$LOCALCLASSPATH
echo

echo Starting Tests...
echo

$JAVA_HOME/bin/java -Dant.home=$ANT_HOME -classpath "$LOCALCLASSPATH:$CLASSPATH" org.apache.tools.ant.Main $*

Loading…
Cancel
Save