diff options
Diffstat (limited to 'xmerge/source/palmtests/bin/rd')
-rwxr-xr-x | xmerge/source/palmtests/bin/rd | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/xmerge/source/palmtests/bin/rd b/xmerge/source/palmtests/bin/rd new file mode 100755 index 000000000000..db2dc56aee6b --- /dev/null +++ b/xmerge/source/palmtests/bin/rd @@ -0,0 +1,24 @@ +#!/bin/ksh +# +# Directories commonly used by this script... +# + +#export LBHOME=$ZPHOME/lib +#export CVHOME=$ZPHOME/converters +#export CVHOME=/export/home/test/qadir/qa-new/classes + +# Set up classpath to include needed ZenSync jars. Honor the users +# CLASSPATH by leaving it first. This allows users to specify their +# own versions of the jar files in their CLASSPATH if they wish to +# override these defaults. +# + +export CLASSPATH=$CLASSES_DIR/xerces.jar:$CLASSES_DIR/jmc.jar:$CLASSES_DIR/xmerge.jar:$CLASSES_DIR/minicalc.jar:$CLASSES_DIR/aportisdoc.jar:$CLASSES_DIR/wordsmith.jar + +echo "The classpath is $CLASSPATH" + +# Run the test driver, passing along args. +# +# java com.sun.star.comp.documentconversion.test.Driver $* +java -cp $CLASSPATH org.openoffice.xmerge.test.Driver $* + |