1#!/bin/ksh 2# 3# Directories commonly used by this script... 4# 5 6#export LBHOME=$ZPHOME/lib 7#export CVHOME=$ZPHOME/converters 8#export CVHOME=/export/home/test/qadir/qa-new/classes 9 10# Set up classpath to include needed ZenSync jars. Honor the users 11# CLASSPATH by leaving it first. This allows users to specify their 12# own versions of the jar files in their CLASSPATH if they wish to 13# override these defaults. 14# 15 16export 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 17 18echo "The classpath is $CLASSPATH" 19 20# Run the test driver, passing along args. 21# 22# java com.sun.star.comp.documentconversion.test.Driver $* 23java -cp $CLASSPATH org.openoffice.xmerge.test.Driver $* 24 25