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