Re: Submitting test suite results to tests.xproc.org

"David A. Lee" <dlee@calldei.com> writes:
> Is the runtests program itself publicly availible
> ( in a way that could run a different implementation of xproc but
> otherwise do all the test suite >?)
>
> /projects/src/calabash/runtests

No, you have to write that bit yourself. Mine isn't going to help you:

#!/bin/bash

ROOT=/projects/src/calabash

CLASSPATH=$CLASSPATH\
:$ROOT/out/production/Saxon9\
:/share/java/saxonsa9/saxon9sa.jar\
:$ROOT/out/production/Isorelax\
:$ROOT/out/production/Msv\
:/share/java/msv/relaxngDatatype.jar\
:/share/java/msv/xsdlib.jar\
:/share/java/tagsoup/tagsoup-1.2.jar\
:$ROOT/out/production/Calabash\
:/projects/src/xmlresolver/out/production/Xmlresolver\
:/usr/local/DeltaXMLCore-5_1/command.jar\
:/usr/local/DeltaXMLCore-5_1/deltawing.jar\
:/usr/local/DeltaXMLCore-5_1/deltaxml.jar\
:/projects/marklogic/Java/xcc.jar\
:/share/java/xepdev-4.13/lib/xep-debug.jar\
:/share/java/xep/lib/xt.jar

DEFARGS="-d /home/ndw/tests.xproc.org/tests/required -d /home/ndw/tests.xproc.org/tests/optional"
if [ "X$1" = "X" ]; then
    ARGS=$DEFARGS
else
    ARGS="$@"
fi

java -Dcom.xmlcalabash.phonehome=false -cp $CLASSPATH com.xmlcalabash.drivers.RunTestReport -a $ARGS

                                        Be seeing you,
                                          norm

-- 
Norman Walsh <ndw@nwalsh.com> | Wink at small faults; for thou has
http://nwalsh.com/            | great ones.--Thomas Fuller (II)

Received on Thursday, 4 December 2008 17:04:02 UTC